Skip to content

Commit

Permalink
added github tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandrErohin committed Mar 15, 2024
1 parent 8568680 commit d96c64c
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Python Package
on:
push:
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v2
name: Setup Python
with:
python-version: '3.10.x'
- name: Install dependencies
run: |
ls -la
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with unittest
run: |
python -m unittest discover -s ./test

0 comments on commit d96c64c

Please sign in to comment.