|
@ -11,8 +11,8 @@ jobs: |
|
|
name: lint |
|
|
name: lint |
|
|
runs-on: ubuntu-latest |
|
|
runs-on: ubuntu-latest |
|
|
steps: |
|
|
steps: |
|
|
- uses: actions/checkout@v2 |
|
|
- uses: actions/checkout@v3 |
|
|
- uses: actions/setup-python@v2 |
|
|
- uses: actions/setup-python@v3 |
|
|
- run: python -m pip install --upgrade pip wheel |
|
|
- run: python -m pip install --upgrade pip wheel |
|
|
- run: pip install tox tox-gh-actions |
|
|
- run: pip install tox tox-gh-actions |
|
|
- run: tox -eflake8 |
|
|
- run: tox -eflake8 |
|
@ -30,8 +30,8 @@ jobs: |
|
|
fail-fast: false |
|
|
fail-fast: false |
|
|
runs-on: ${{ matrix.os }} |
|
|
runs-on: ${{ matrix.os }} |
|
|
steps: |
|
|
steps: |
|
|
- uses: actions/checkout@v2 |
|
|
- uses: actions/checkout@v3 |
|
|
- uses: actions/setup-python@v2 |
|
|
- uses: actions/setup-python@v3 |
|
|
with: |
|
|
with: |
|
|
python-version: ${{ matrix.python }} |
|
|
python-version: ${{ matrix.python }} |
|
|
- run: python -m pip install --upgrade pip wheel |
|
|
- run: python -m pip install --upgrade pip wheel |
|
@ -41,9 +41,12 @@ jobs: |
|
|
name: coverage |
|
|
name: coverage |
|
|
runs-on: ubuntu-latest |
|
|
runs-on: ubuntu-latest |
|
|
steps: |
|
|
steps: |
|
|
- uses: actions/checkout@v2 |
|
|
- uses: actions/checkout@v3 |
|
|
- uses: actions/setup-python@v2 |
|
|
- uses: actions/setup-python@v3 |
|
|
- run: python -m pip install --upgrade pip wheel |
|
|
- run: python -m pip install --upgrade pip wheel |
|
|
- run: pip install tox tox-gh-actions codecov |
|
|
- run: pip install tox tox-gh-actions |
|
|
- run: tox |
|
|
- run: tox |
|
|
- run: codecov |
|
|
- uses: codecov/codecov-action@v3 |
|
|
|
|
|
with: |
|
|
|
|
|
files: ./coverage.xml |
|
|
|
|
|
fail_ci_if_error: true |
|
|