statistics visualize: 折れ線グラフを生産量別に指標を変更できるようにしました。
#1250
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Python tests and lint | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| permissions: | |
| contents: read | |
| env: | |
| # 認証情報を確認するテストを動作させるために、適当な値を認証情報として設定する | |
| ANNOFAB_USER_ID: foo | |
| ANNOFAB_PASSWORD: bar | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install uv and set the python version | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| # Install a specific version of uv. | |
| version: "latest" | |
| - name: Install the project | |
| run: uv sync --only-group test | |
| - name: Test | |
| run: | | |
| uv run pytest -n auto -m "not access_webapi" | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install uv and set the python version | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| python-version: 3.13 | |
| # Install a specific version of uv. | |
| version: "latest" | |
| - name: Install the project | |
| run: uv sync --only-group linter | |
| - name: Lint | |
| run: | | |
| make lint | |