Skip to content

Bump black from 19.10b0 to 24.3.0 #90

Bump black from 19.10b0 to 24.3.0

Bump black from 19.10b0 to 24.3.0 #90

Workflow file for this run

on: push
jobs:
build:
runs-on: ubuntu-latest
container: python:3.9-buster
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Install Poetry
uses: snok/[email protected]
- name: Install dependencies
run: make install
- name: Lint package
run: make lint
- name: Test package with coverage
run: make coverage
- name: Publish coverage
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
fail_ci_if_error: true
- name: Generate documentation
run: make docs
- name: Generate build
run: make dist