Skip to content

Commit

Permalink
dev: Add draft of MacOS and Windows CI job manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
adigitoleo committed Oct 18, 2023
1 parent 868e2ec commit 49c7fa3
Showing 1 changed file with 37 additions and 1 deletion.
38 changes: 37 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
install:
name: Install package and run tests
name: (Linux) Install package and run tests
runs-on: ubuntu-latest

steps:
Expand All @@ -29,3 +29,39 @@ jobs:
python3 -m pip install --upgrade pip
python3 -m pip install "$PWD"[test]
python3 -m pytest -rN
install:
name: (MacOS) Install package and run tests
runs-on: macos-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Install and test
run: |
python3 -m pip install --upgrade pip
python3 -m pip install "$PWD"[test]
python3 -m pytest -rN
install:
name: (Windows) Install package and run tests
runs-on: windows-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Install and test
run: |
python3 -m pip install --upgrade pip
python3 -m pip install "$PWD"[test]
python3 -m pytest -rN

0 comments on commit 49c7fa3

Please sign in to comment.