Skip to content

Commit

Permalink
See what happens on macOS and Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
berquist committed Nov 3, 2023
1 parent 8fd3f3e commit eb2e6de
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,20 @@ on: [push, pull_request]

jobs:
test:
name: Test Python ${{ matrix.python-version }} / ${{ matrix.env-type.env-type-name }}
runs-on: ubuntu-latest
name: Test ${{ matrix.os }} / Python ${{ matrix.python-version }} / ${{ matrix.env-type.env-type-name }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
python-version: ["3.8", "3.9", "3.10", "3.11"]
# yamllint disable rule:braces
env-type:
- { env-type-name: venv, shell: bash }
- { env-type-name: conda, shell: 'bash -l {0}' }
# yamllint enable rule:braces
runs-on: ${{ matrix.os }}
defaults:
run:
shell: ${{ matrix.env-type.shell }}
Expand Down

0 comments on commit eb2e6de

Please sign in to comment.