Skip to content

Commit

Permalink
Workflow for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nside committed Jul 24, 2023
1 parent 7b4b4ed commit b2cf5bb
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Run Tests

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2

- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Install package
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Run tests
run: |
python -m unittest discover tests

0 comments on commit b2cf5bb

Please sign in to comment.