Skip to content

Commit

Permalink
Exclude CI checks for Python 3.6 on Ubuntu-latest.
Browse files Browse the repository at this point in the history
  • Loading branch information
sodul committed May 6, 2023
1 parent 7a834bc commit 802cd19
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,16 @@ jobs:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
exclude:
- os: ubuntu-latest # Ubuntu-latest can only install 3.7+.
python-version: 3.6
fail-fast: false

steps:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down

0 comments on commit 802cd19

Please sign in to comment.