diff options
| author | Bobby <[email protected]> | 2022-08-30 21:45:27 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-08-30 21:45:27 -0400 |
| commit | b69d70b508a2da780d037062440631332bd8bd9e (patch) | |
| tree | 36296c32f30df6d209fe7522a521e73a3f90843e /.github/workflows | |
| parent | 96dea8ac5d271653a8e295ba259677ddbde94ba6 (diff) | |
| download | edify-b69d70b508a2da780d037062440631332bd8bd9e.tar.xz edify-b69d70b508a2da780d037062440631332bd8bd9e.zip | |
Update Coverage CI
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/coverage.yml | 36 |
1 files changed, 9 insertions, 27 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 8e0d213..589ea16 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -2,42 +2,24 @@ name: Upload Coverage Reports on: [push, pull_request] jobs: build: - name: ${{ matrix.name }} - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest timeout-minutes: 30 - strategy: - fail-fast: false - matrix: - include: - - name: 'build' - python: '3.10' - toxpython: 'python3.10' - python_arch: 'x64' - tox_env: 'py310' - os: 'ubuntu-latest' - - name: 'codecov' - python: '3.10' - toxpython: 'python3.10' - python_arch: 'x64' - tox_env: 'codecov' - os: 'ubuntu-latest' steps: - uses: actions/checkout@v3 - with: - fetch-depth: 0 - uses: actions/setup-python@v3 with: - python-version: ${{ matrix.python }} - architecture: ${{ matrix.python_arch }} + python-version: 3.9 - name: install dependencies run: | + python -m pip install --upgrade pip python -mpip install --progress-bar=off -r ci/requirements.txt virtualenv --version pip --version tox --version pip list --format=freeze - - name: test - env: - TOXPYTHON: '${{ matrix.toxpython }}' - run: > - tox -e ${{ matrix.tox_env }} -v + - name: upload coverage reports + run: | + tox -e clean -v + tox -e py310 -v + tox -e report -v + tox -e codecov -v |
