Skip to content

Commit

Permalink
added a GitHub action to run unit tests automatically on code push
Browse files Browse the repository at this point in the history
  • Loading branch information
eskorotkova committed Jun 14, 2024
1 parent 4362348 commit f167e8b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/unittests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Continuous Integration
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.10.0
architecture: x64
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run Tests
run: python -m pytest

0 comments on commit f167e8b

Please sign in to comment.