Skip to content

Commit

Permalink
Added windows build testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
3benknight committed Jul 26, 2024
1 parent 0221599 commit 4f9a4d9
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- '**'

jobs:
tests:
tests-linux:
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -29,3 +29,24 @@ jobs:

- name: Install Xanthos
run: pip install git+https://github.com/JGCRI/xanthos@dev-testing

tests-windows:
runs-on: windows-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']

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

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Upgrade pip
run: python -m pip install --upgrade pip

- name: Install Xanthos
run: pip install git+https://github.com/JGCRI/xanthos@dev-testing

0 comments on commit 4f9a4d9

Please sign in to comment.