-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #515 from tisnik/pr-check
PR check
- Loading branch information
Showing
3 changed files
with
39 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Pytest | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
pytest: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
python-version: | ||
- "3.7" | ||
- "3.8" | ||
- "3.9" | ||
- "3.10" | ||
- "3.11" | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- run: pip install --upgrade setuptools | ||
- run: pip install --upgrade wheel | ||
- run: pip install pycodestyle | ||
- run: pip install pydocstyle | ||
- run: pip install pytest-cov | ||
- run: pip install --upgrade importlib-metadata | ||
- run: pip install behave | ||
- run: pip install semver | ||
- name: Style checks | ||
run: make style | ||
- name: Docstrings checks | ||
run: make doc-check | ||
- name: Unit tests | ||
run: make unit_tests | ||
- name: Unit tests coverage | ||
run: make coverage |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters