🚧 build(deps): bump optype from 0.8.0 to 0.9.0 #300
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: 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 }} |