Skip to content

Commit

Permalink
ci for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Nina Bernick committed May 30, 2024
1 parent c1a67fa commit dc0ba09
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "Run tests on push"

on:
push:
branches:
- '**'

jobs:
pytest:
name: "Pytest"
runs-on: ubuntu-latest

steps:
- name: "Checkout code"
uses: actions/checkout@v4
- name: "Set up Python"
uses: actions/setup-python@v2
with:
python-version: '3.8'

- name: "Install dependencies"
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: "Run tests"
run: |
make test

0 comments on commit dc0ba09

Please sign in to comment.