Skip to content

Adding pyproject toml template (#13) #1

Adding pyproject toml template (#13)

Adding pyproject toml template (#13) #1

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
with:
options: "--line-length=100 --check --verbose ."
version: 23.10.1
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Create and activate env
run: python -m venv venv && source venv/bin/activate
- name: Build
run: make build-all
- name: Test
run: make test-all