Skip to content

Commit

Permalink
try something else
Browse files Browse the repository at this point in the history
  • Loading branch information
willdumm committed May 20, 2024
1 parent 5a409a4 commit f7d3d7d
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-13]
os: [ubuntu-latest, macos-latest]
python-version: [3.7, 3.8, 3.9, "3.10"] # https://github.com/actions/runner/issues/1989

runs-on: ${{ matrix.os }}
Expand All @@ -19,14 +19,13 @@ jobs:
- name: Checkout 🛎️
uses: actions/checkout@v3

- uses: mamba-org/setup-micromamba@v1
- name: Python Setup
uses: actions/setup-python@v5
with:
micromamba-version: '1.5.6-0' # any version from https://github.com/mamba-org/micromamba-releases
environment-file: environment.yml
init-shell: bash
cache-environment: true
post-cleanup: 'none'
python-version: ${{ matrix.python-version }}

- name: Test
- name: Install and Test
shell: bash -l {0}
run: make test
run: |
pip install .
make test

0 comments on commit f7d3d7d

Please sign in to comment.