Feat/release ci cd (#5) #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Quality | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ master, main ] | |
pull_request: | |
branches: [ master, main ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
check: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.9", "3.10",] | |
poetry-version: ["1.3.2"] | |
os: [ubuntu-20.04,] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install and configure Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: ${{ matrix.poetry-version }} | |
virtualenvs-create: true | |
installer-parallel: true | |
- name: Install | |
run: | | |
poetry install | |
- name: Format | |
run: | | |
make fmt | |
- name: Lint | |
run: | | |
make lint | |
- name: Tests | |
run: | | |
make test | |
- name: Lock | |
run: | | |
poetry lock | |
- name: Ensure lockfile is up to date | |
run: | | |
git diff --exit-code | |