Skip to content

Commit

Permalink
Build for all supported python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-protectai committed Nov 16, 2023
1 parent c29d450 commit e972a4c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']

steps:
- name: Checkout
Expand All @@ -17,7 +21,7 @@ jobs:
fetch-depth: 0 # Necessary to get tags
- uses: actions/setup-python@v2
with:
python-version: "3.9"
python-version: ${{ matrix.python-version}}
- name: Install Jupyter Lab
run: |
pip install -U jupyterlab~=3.6
Expand Down

0 comments on commit e972a4c

Please sign in to comment.