Skip to content

Fix 404 link from pypi to github #94

Fix 404 link from pypi to github

Fix 404 link from pypi to github #94

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
pip install pipenv
make install
env:
PIPENV_VENV_IN_PROJECT: 1
- name: Test
run: make tests-cov
- name: Upload Coverage
uses: codecov/codecov-action@v1
quality:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
pip install pipenv
make install
env:
PIPENV_VENV_IN_PROJECT: 1
- name: Check Quality
run: make check