build(deps): bump astral-sh/setup-uv from 4 to 5 (#297) #218
This file contains 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: tests | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
env: | |
PYTHON_VERSION: "3.11" | |
UV_VERSION: "0.5.7" | |
jobs: | |
deps-sync: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
architecture: x64 | |
- uses: astral-sh/setup-uv@v5 | |
with: | |
version: ${{ env.UV_VERSION }} | |
- name: Run dependency sync checker | |
run: | | |
uv pip install --system PyYAML | |
make deps-check | |
pytest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
architecture: x64 | |
- uses: astral-sh/setup-uv@v5 | |
with: | |
version: ${{ env.UV_VERSION }} | |
- name: Run tests | |
run: | | |
uv pip install --system -e ".[test]" | |
pytest --cov=torchcam --cov-report xml tests/ | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: coverage-reports | |
path: ./coverage.xml | |
codecov-upload: | |
runs-on: ubuntu-latest | |
needs: pytest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- uses: actions/download-artifact@v4 | |
- uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: unittests | |
directory: ./coverage-reports | |
fail_ci_if_error: true | |
headers: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Check the headers | |
uses: frgfm/validate-python-headers@main | |
with: | |
license: 'Apache-2.0' | |
owner: 'François-Guillaume Fernandez' | |
starting-year: 2020 | |
folders: 'torchcam,scripts,demo,docs,.github' | |
ignore-files: 'version.py,__init__.py' | |
cam-example: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
architecture: x64 | |
- uses: astral-sh/setup-uv@v5 | |
with: | |
version: ${{ env.UV_VERSION }} | |
- name: Install dependencies | |
run: | | |
uv pip install --system --upgrade -e . | |
uv pip install --system -r scripts/requirements.txt | |
- name: Run analysis script | |
run: python scripts/cam_example.py --arch resnet18 --class-idx 232 --noblock --method LayerCAM | |
eval-latency: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
architecture: x64 | |
- uses: astral-sh/setup-uv@v5 | |
with: | |
version: ${{ env.UV_VERSION }} | |
- name: Install dependencies | |
run: | | |
uv pip install --system --upgrade -e . | |
uv pip install --system -r scripts/requirements.txt | |
- name: Run analysis script | |
run: python scripts/eval_latency.py --arch resnet18 LayerCAM |