Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
crusaderky committed Oct 3, 2023
1 parent 3de747f commit e85e6b1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 14 deletions.
23 changes: 9 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,21 @@ on: [push, pull_request]

jobs:
test:
name: ${{ matrix.os }} ${{ matrix.python-version }}
name: ${{ matrix.os }} ${{ matrix.python-version }} ${{ matrix.environment }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11"]
environment: [continuous_integration/environment.yml]
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.9", "3.11"]
environment: [alldeps]
include:
- os: windows-latest
python-version: "3.9"
- os: windows-latest
python-version: "3.11"
- os: macos-latest
python-version: "3.9"
- os: macos-latest
python-version: "3.11"
- os: ubuntu-latest
python-version: "3.10"
environment: alldeps
- os: ubuntu-latest
python-version: "3.9"
environment: continuous_integration/environment-no-optional-deps.yml
environment: nodeps

steps:
- name: Checkout source
Expand All @@ -40,7 +35,7 @@ jobs:
activate-environment: test
condarc-file: continuous_integration/condarc
python-version: ${{ matrix.python-version }}
environment-file: ${{ matrix.environment }}
environment-file: continuous_integration/environment-${{ matrix.environment }}.yml

- name: Install zict
shell: bash -l {0}
Expand Down
File renamed without changes.

0 comments on commit e85e6b1

Please sign in to comment.