Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add allow_failure #26

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/ci_workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,48 +19,57 @@ jobs:
ci_tests:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.allow_failure}}
strategy:
matrix:
include:
- name: Code style checks
os: ubuntu-latest
python: 3.x
toxenv: codestyle
allow_failure: false

- name: PEP 517
os: ubuntu-latest
python: 3.x
toxenv: pep517
allow_failure: false

- name: Security audit
os: ubuntu-latest
python: 3.x
toxenv: securityaudit
allow_failure: false

- name: Python 3.7 with oldest supported dependencies
os: ubuntu-latest
python: 3.7
toxenv: py37-test-oldestdeps
allow_failure: false

- name: Python 3.9 with coverage checking
os: ubuntu-latest
python: 3.9
toxenv: py39-test-cov
allow_failure: false

- name: OS X - Python 3.8
os: macos-latest
python: 3.8
toxenv: py38-test
allow_failure: false

- name: Windows - Python 3.8
os: windows-latest
python: 3.8
toxenv: py38-test
allow_failure: false

- name: Python 3.9 with latest dev versions of key dependencies
os: ubuntu-latest
python: 3.9
toxenv: py39-test-devdeps
allow_failure: false

steps:
- name: Checkout code
Expand Down