[ci] Run tests also if QA checks fail #434
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: Netjsonconfig CI Build | |
on: | |
push: | |
branches: | |
- master | |
- gsoc23 | |
pull_request: | |
branches: | |
- master | |
- gsoc23 | |
jobs: | |
build: | |
name: Python==${{ matrix.python-version }} | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- 3.8 | |
- 3.9 | |
- "3.10" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Dependencies | |
id: deps | |
run: | | |
pip install -U pip wheel setuptools | |
pip install -U -r requirements-test.txt | |
pip install -U -e . | |
- name: QA checks | |
run: ./run-qa-checks | |
- name: Tests | |
if: ${{ !cancelled() && steps.deps.conclusion == 'success' }} | |
run: | | |
coverage run -a --source=netjsonconfig runtests.py | |
coverage xml | |
- name: Upload Coverage | |
if: ${{ success() }} | |
uses: coverallsapp/github-action@v2 | |
with: | |
parallel: true | |
format: cobertura | |
flag-name: python-${{ matrix.env.env }} | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
coveralls: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Coveralls Finished | |
uses: coverallsapp/github-action@v2 | |
with: | |
parallel-finished: true |