Skip to content
This repository has been archived by the owner on Mar 6, 2022. It is now read-only.

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
maltekliemann committed Feb 25, 2022
1 parent 2565375 commit 0240948
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,22 @@ on:
branches: master
pull_request:
branches:
- master
- develop
- master
- develop
workflow_dispatch:

jobs:
main:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install requirements
run: |
pip install -r requirements.txt
pip install .
- name: Run tests
run: |
pytest -vv tests
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9.x
- name: Install requirements
run: |
pip install -r requirements.txt
pip install .
- name: Run tests
run: |
pytest -vv tests

0 comments on commit 0240948

Please sign in to comment.