Merge branch 'main' of https://github.com/elkanamol/sierra_status #1
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: Run Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.8.x' | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install pytest pytest-cov flake8 | |
- name: Run linting | |
run: flake8 . | |
- name: Run tests with pytest and coverage | |
id: run-tests | |
run: | | |
pytest_output=$(pytest --cov=sierra_status --cov-report=xml) | |
echo "::set-output name=pytest_output::$pytest_output" | |
- name: Upload coverage report | |
uses: codecov/codecov-action@v3 | |
with: | |
file: ./coverage.xml | |
flags: unittests | |
- name: Print test results | |
if: always() | |
run: | | |
echo "Test Results:" | |
echo "${{ steps.run-tests.outputs.pytest_output }}" |