Skip to content

chore: bump to version 20.1.0 (#74) #415

chore: bump to version 20.1.0 (#74)

chore: bump to version 20.1.0 (#74) #415

Workflow file for this run

name: Unit tests, QA
on:
push:
branches:
- main
- '**'
pull_request:
branches:
- main
- '**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: requirements/dev.txt
- name: Install dependencies
run: |
make requirements
- name: Run the QA suite
run: |
make quality