chore(deps): update actions/setup-python action to v5.3.0 #268
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: '[CI] Test' | |
on: | |
# Caches have a certain level of isolation, see https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#restrictions-for-accessing-a-cache | |
# We run on push to main to have all caches in the main branch so that they can be reused for PRs. | |
push: | |
branches: | |
- main | |
merge_group: | |
pull_request: | |
# Cancel a previous job if the same workflow is triggers on the same PR or commit. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
- uses: MyAlbum/purge-cache@881eb5957687193fa612bf74c0042adc78ea5e54 # v2 | |
with: | |
max-age: 604800 # Leave only caches accessed in the last 7 days (default) | |
- uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1 | |
id: cache-env | |
with: | |
path: | | |
./env | |
key: conda-env|${{ hashFiles('environment-dev.yml') }} | |
- name: Setup conda environment | |
if: steps.cache-env.outputs.cache-hit != 'true' | |
run: make setup | |
- name: Run static type check | |
run: make type-check | |
- name: Run tests | |
run: make test | |
- name: Report coverage | |
id: coverage | |
if: ${{ !cancelled() }} | |
uses: MishaKav/pytest-coverage-comment@fa1c641d7e3fa1d98ed95d5f658ccd638b774628 # v1.1.52 | |
with: | |
title: Coverage Report | |
pytest-xml-coverage-path: ./coverage.xml |