Bump coverage from 7.6.7 to 7.6.9 (#119) #225
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
name: Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
check-source-changes: | |
runs-on: ubuntu-latest | |
outputs: | |
run_job: ${{ steps.changed-files.outputs.any_changed }} | |
steps: | |
- name: Checkout Sourcecode | |
uses: actions/checkout@v4 | |
- name: Check for changes in source code | |
id: changed-files | |
uses: tj-actions/changed-files@v45.0.5 | |
with: | |
files: | | |
purpleair_api/*.py | |
tests/*.py | |
tests/*.txt | |
setup.py | |
setup.cfg | |
tests: | |
runs-on: ubuntu-latest | |
needs: check-source-changes | |
if: needs.check-source-changes.outputs.run_job == 'true' | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.10 env for running unittest tests... | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install python3 requirements... | |
uses: carlkidcrypto/os-specific-runner@v2.1.1 | |
with: | |
linux: cd /home/runner/work/purpleair_api/purpleair_api/ ; | |
python -m pip install --upgrade wheel ; | |
python -m pip install --upgrade setuptools ; | |
python -m pip install --upgrade pip ; | |
python -m pip install coverage ; | |
python -m pip install requests_mock ; | |
- name: Run unit tests... | |
uses: carlkidcrypto/os-specific-runner@v2.1.1 | |
with: | |
linux: cd /home/runner/work/purpleair_api/purpleair_api/tests ; | |
coverage run -m unittest && coverage json ; | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v5 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |