Skip to content

Merge pull request #5 from JoshuaDRose/main #8

Merge pull request #5 from JoshuaDRose/main

Merge pull request #5 from JoshuaDRose/main #8

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
branches: [ "main", "tests" ]
pull_request:
branches: [ "main", "tests" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
- name: Lint with black
run: |
black --quiet --safe -l 120 .
- name: Test with pytest
run: |
coverage run -m pytest --verbose -p no:cacheprovider --showlocals -W ignore --cov . --cov-report=xml
- name: Upload coverage reports to Codecov
uses: actions/upload-artifact@v2
with:
name: coverage-report
path: coverage.xml
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}