Skip to content

fix linting

fix linting #55

Workflow file for this run

name: nonrad codecov
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: '3.11'
cache: True
- name: Install dependencies
run: |
pdm install -dG test
- name: Generate coverage report
run: |
pdm remove -L pdm.new.lock numba
pdm run pytest --cov-report=xml --cov=nonrad nonrad
bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }}