Minor changes in github actions
This commit is contained in:
parent
2a74f5d445
commit
7a1fc46f00
2 changed files with 9 additions and 1 deletions
4
.dockerignore
Normal file
4
.dockerignore
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
__pycache__
|
||||||
|
.pytest_cache
|
||||||
|
*.pyc
|
||||||
|
.*
|
||||||
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
|
@ -26,10 +26,14 @@ jobs:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Run tests
|
- name: Install requirements
|
||||||
run: |
|
run: |
|
||||||
cd src/
|
cd src/
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
|
||||||
|
- name: Run tests
|
||||||
|
run: |
|
||||||
|
cd src/
|
||||||
pytest -s tests/ -vv
|
pytest -s tests/ -vv
|
||||||
|
|
||||||
Build:
|
Build:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue