Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Improve metadata handling #318

Improve metadata handling

Improve metadata handling #318

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
pip install poetry
poetry --version
- name: Install packages
run: |
poetry install
- name: Check formatting
run: |
make check-formatting
- name: Lint
run: |
make lint
- name: Check typing
run: |
make check-typing
- name: Unit test
run: |
make unittest