Replace file name with relative file path for consistent comparaison #7
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: ci | |
| on: | |
| pull_request: | |
| branches: | |
| - 'main' | |
| paths: | |
| - 'codesectools/**' | |
| - 'tests/**' | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Setup project | |
| run: uv sync --locked --all-extras | |
| - name: Run check | |
| run: uv run ruff check && uv run ty check | |
| - name: Run tests | |
| run: make test |