Skip to content

Commit

Permalink
WIP CI
Browse files Browse the repository at this point in the history
  • Loading branch information
elcorto committed Sep 30, 2023
1 parent 74cb289 commit 1a03b25
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,18 @@ on:
push:
branches:
- main
- feature-dask

jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
os: [ubuntu-latest]

runs-on: ${{ matrix.os }}

steps:

- name: checkout
Expand All @@ -16,11 +24,11 @@ jobs:
- name: pysetup
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: ${{ matrix.python-version }}

- name: install
run: |
pip install -e ".[test]"
pip install -e ".[test,dask]"
- name: run tests
run: |
Expand Down

0 comments on commit 1a03b25

Please sign in to comment.