Skip to content

Merge pull request #16 from Inveracity/update-dependencies #41

Merge pull request #16 from Inveracity/update-dependencies

Merge pull request #16 from Inveracity/update-dependencies #41

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv sync --dev
- name: Lint with flake8
run: |
pipenv run lint
- name: Test with pytest
run: |
pipenv run test
COVERAGE=$(pipenv run coverage report | grep TOTAL | tr -s " " | cut -d " " -f 4)
echo "COVERAGE=$COVERAGE" >> $GITHUB_ENV
- name: Coverage badge
uses: schneegans/dynamic-badges-action@v1.6.0
with:
auth: ${{ secrets.GIST_SECRET }}
gistID: bade1568c33344c896cbfa5cdef91270
filename: coverage.json
label: coverage
message: ${{ env.COVERAGE }}
color: green