Skip to content

Commit

Permalink
Windows compatibility workflow. (#17)
Browse files Browse the repository at this point in the history
Signed-off-by: Caroline Russell <caroline@appthreat.dev>
Co-authored-by: Caroline Russell <caroline@appthreat.dev>
  • Loading branch information
prabhu and cerrussell authored Oct 13, 2023
1 parent 5055380 commit c47125d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/win_compat.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Windows Install

on:
workflow_dispatch

jobs:
build:
runs-on: windows-latest
strategy:
matrix:
python-version: ['3.8','3.9','3.10','3.11','3.12']
with-science: ["--download", "--download --with-science"]
fail-fast: false

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install poetry
python -m poetry install
python -m poetry run chen ${{ matrix.with-science }}

0 comments on commit c47125d

Please sign in to comment.