Skip to content

🚧 build(deps): bump executing from 2.1.0 to 2.2.0 #302

🚧 build(deps): bump executing from 2.1.0 to 2.2.0

🚧 build(deps): bump executing from 2.1.0 to 2.2.0 #302

Workflow file for this run

name: coverage
on: push
jobs:
coverage:
name: Collect and upload coverage
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
py:
- "3.13.0"
os:
- ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
submodules: "recursive"
- name: Setup python for test ${{ matrix.py }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.py }}
- name: Create testdump directory
run: mkdir tests/src_core_lego/test_vocab_files/testdump
- name: Install project deps
run: python3 -m pip install -r requirements-dev.txt
- name: Run coverage for python
run: |
coverage run tests/run_all_tests.py
mkdir -p reports/coverage
coverage xml -o reports/coverage/coverage.xml
- name: Upload results to Codecov
uses: codecov/[email protected]
with:
files: ./reports/coverage/coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}