⬆️ Bump actions/setup-node from 4 to 5 #735
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: Check Python Linting and Tests | |
| on: [push, pull_request] | |
| jobs: | |
| stac-model: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12", "3.13"] | |
| env: | |
| COVERAGE_FILE: .coverage.${{ matrix.python-version }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/[email protected] | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install uv | |
| run: make setup | |
| - name: Set up cache | |
| uses: actions/[email protected] | |
| with: | |
| path: .venv | |
| key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('uv.lock') }} | |
| - name: Install dependencies | |
| run: make install-dev | |
| if: ${{ matrix.python-version == '3.10' }} | |
| - name: Install dependencies with extras | |
| run: make install-dev-extras | |
| if: ${{ matrix.python-version != '3.10' }} | |
| - name: Display Packages | |
| run: pip list | |
| - name: Run checks | |
| if: ${{ matrix.python-version != '3.10' }} | |
| run: make lint-all | |
| - name: Run tests | |
| run: | | |
| make test |