Skip to content

bump to v28.0.0-alpha.7 #121

bump to v28.0.0-alpha.7

bump to v28.0.0-alpha.7 #121

Workflow file for this run

name: Coverage
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
python3 -m pip install -U pytest pytest-asyncio pytest-cov pytest-xdist
python3 -m pip install -U numpy matplotlib forbiddenfruit
python3 x.py cov --cov_report=xml
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.xml
disable_search: true
fail_ci_if_error: true