chore: update pre-commit hooks #359
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 | |
# this avoids duplicated builds on pull request for the cost | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ci: | |
strategy: | |
matrix: | |
python-version: ["3.13"] | |
corsika-version: ["77550"] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up PDM | |
uses: pdm-project/setup-pdm@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: true | |
- name: Install dependencies | |
run: | | |
pdm sync -d -G hdf | |
- name: Cache Corsika7 | |
id: cache-corsika | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-corsika | |
with: | |
path: corsika-${{ matrix.corsika-version }}/run | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.corsika-version }}-${{ hashFiles('admin/config.h') }} | |
- name: Install CORSIKA7 | |
run: admin/download_corsika.sh | |
env: | |
CORSIKA_PW: ${{ secrets.CORSIKA_PW }} | |
CORSIKA_VERSION: ${{ matrix.corsika-version }} | |
- name: Run Tests | |
run: | | |
pdm run -v coverage run --include="panama/**" -m pytest | |
- name: Produce coverage xml | |
run: pdm run -v coverage xml | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |