Skip to content

Commit

Permalink
Add github workflow configs
Browse files Browse the repository at this point in the history
  • Loading branch information
eriknyquist committed Dec 12, 2023
1 parent 4fc1d4f commit fd08237
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/coverage.yml
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
29 changes: 29 additions & 0 deletions .github/workflows/tests.yml
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

0 comments on commit fd08237

Please sign in to comment.