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 993399c
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,31 @@ 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
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: pysetup
uses: actions/setup-python@v2
uses: actions/setup-python@v4
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 993399c

Please sign in to comment.