ci: macOS runner の macos-13 をアップデート (#126) #317
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: Test Train | |
| on: | |
| push: | |
| pull_request: | |
| paths: | |
| - .github/workflows/test_train.yml | |
| - train/** | |
| defaults: | |
| run: | |
| shell: bash | |
| working-directory: train | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| - name: Run lint | |
| run: | | |
| uv run ruff check | |
| uv run ruff format --diff | |
| - name: Run test train | |
| run: | | |
| uv run src/train.py ./config/dummy.yml |