fdf3a86d84
* build(deps-dev): bump black from 23.7.0 to 23.9.1 (#33) Bumps [black](https://github.com/psf/black) from 23.7.0 to 23.9.1. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](https://github.com/psf/black/compare/23.7.0...23.9.1) --- updated-dependencies: - dependency-name: black dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * meta: update devbox files * ctt: type analyse * ci: update devbox-install-action (#35) * import protocol from typing straight (#36) * ctt: update uq and np tests * s+,docs: add termux-location json support (#37) docs: update api accordingly * meta: bump ver * s+,ctt: fix italian addressing + add test (#34) * st: fix regression in last commit + add per-line settings dict * ctt: update modena test * docs: update api docs for the new st constants * ci,devbox: fix for ci * ctt: update modena test --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
50 lines
1 KiB
YAML
50 lines
1 KiB
YAML
name: qc
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths:
|
|
- '*.py'
|
|
- '**.py'
|
|
|
|
jobs:
|
|
analyse:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: install devbox
|
|
uses: jetpack-io/devbox-install-action@v0.7.0
|
|
|
|
- name: install dependencies
|
|
run: devbox run poetry install
|
|
|
|
- name: build wheel
|
|
id: build
|
|
run: devbox run poetry build
|
|
|
|
- name: analyse with mypy
|
|
run: devbox run poetry run mypy .
|
|
|
|
- name: check for black formatting compliance
|
|
run: devbox run poetry run black --check .
|
|
|
|
- name: analyse isort compliance
|
|
run: devbox run poetry run isort --check *.py **/*.py
|
|
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: install devbox
|
|
uses: jetpack-io/devbox-install-action@v0.7.0
|
|
|
|
- name: install dependencies
|
|
run: devbox run poetry install
|
|
|
|
- name: run tests
|
|
run: devbox run poetry run python test.py
|