Skip to content

Commit

Permalink
add osx test
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoRenaud committed Dec 5, 2024
1 parent f399f7c commit 2439445
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ on: [push]

jobs:
build:
name: build and test
runs-on: [ubuntu-latest, macos-latest]
name: build and test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
version: [3.8]
os: ['ubuntu-latest', 'macos-latest']
python-version: [3.8]

steps:
- name: Cancel Previous Runs
Expand All @@ -22,7 +23,7 @@ jobs:
uses: s-weigand/setup-conda@v1
with:
update-conda: true
python-version: ${{ matrix.version }}
python-version: ${{ matrix.python-version }}
conda-channels: anaconda
- name: Install essential
run: |
Expand Down Expand Up @@ -59,7 +60,7 @@ jobs:
run: coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.github_token }}
COVERALLS_FLAG_NAME: python-${{ matrix.version }}
COVERALLS_FLAG_NAME: python-${{ matrix.python-version }}
COVERALLS_PARALLEL: true

finish:
Expand Down

0 comments on commit 2439445

Please sign in to comment.