Skip to content

rename workflows

rename workflows #1

Workflow file for this run

name: Python
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
python-version: [3.9]
poetry-version: [1.6.1]
steps:
- name: Checkout
uses: actions/checkout@v3.5.3
- name: Set up Poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Setup Python
uses: actions/setup-python@v3.1.4
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install dependencies
run: poetry install
- name: Lint
run: poetry run flake8 -v
- name: Test
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
run: |
poetry run coverage run -m pytest -v -s tests
poetry run codecov