Skip to content

Commit

Permalink
add unit tests workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
b97pla committed Oct 11, 2023
1 parent 1aa219e commit 4c8fc68
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Run Unit Tests

on: [push]

jobs:
build:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
- name: Set up Python 2.7
uses: actions/setup-python@v4
with:
python-version: 2.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e . -r ./requirements/dev
- name: Launch tests
run: |
nosetests ./tests

0 comments on commit 4c8fc68

Please sign in to comment.