Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Deprecates this project #572

Deprecates this project

Deprecates this project #572

Workflow file for this run

name: Main
on:
pull_request:
push:
branches:
- main
jobs:
main:
strategy:
fail-fast: true
matrix:
os: ['ubuntu-18.04', 'macos-10.15']
python: ['3.8.12', '3.9.7', '3.10.0']
runs-on: ${{ matrix.os }}
timeout-minutes: 10
steps:
- name: Project checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install Poetry
uses: snok/[email protected]
with:
virtualenvs-create: false
virtualenvs-in-project: false
- name: Install dependencies
run: make setup
- name: Check codestyle
run: make inspect
- name: Run tests
run: make test
- name: Build Package
run: make build