-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4fc1d4f
commit fd08237
Showing
2 changed files
with
59 additions
and
0 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,30 @@ | ||
name: Test coverage | ||
on: [push] | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
python-version: [3.9] | ||
|
||
steps: | ||
# Checkout the latest code from the repo | ||
- name: Checkout repo | ||
uses: actions/checkout@v2 | ||
# Setup which version of Python to use | ||
- name: Set Up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
# Display the Python version being used | ||
- name: Display Python version | ||
run: python -c "import sys; print(sys.version)" | ||
# Install the package using the setup.py | ||
- name: Install package | ||
run: python setup.py install | ||
- name: Install coverage | ||
run: python -m pip install coverage | ||
# Run the tests | ||
- name: Run coverage script | ||
run: python code_coverage.py |
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,29 @@ | ||
name: Tests | ||
on: [push] | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
# Run in all these versions of Python | ||
python-version: [3.7, 3.8, 3.9, 3.10] | ||
|
||
steps: | ||
# Checkout the latest code from the repo | ||
- name: Checkout repo | ||
uses: actions/checkout@v2 | ||
# Setup which version of Python to use | ||
- name: Set Up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
# Display the Python version being used | ||
- name: Display Python version | ||
run: python -c "import sys; print(sys.version)" | ||
# Install the package using the setup.py | ||
- name: Install package | ||
run: python setup.py install | ||
# Run the tests | ||
- name: Run tests | ||
run: python setup.py test |