Skip to content

Commit

Permalink
Initial CI workflow definition
Browse files Browse the repository at this point in the history
  • Loading branch information
silviot committed Jul 20, 2023
1 parent 29b0ce2 commit 29e149f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Run tests

on:
push:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install git+https://github.com/Dallinger/Dallinger.git@issues/5330-websocket-updates#egg=dallinger
pip install -r dev-requirements.txt
- name: Run pytest
run: pytest

0 comments on commit 29e149f

Please sign in to comment.