Skip to content

First pass

First pass #2

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install package
run: poetry install
- name: Format Check
run: make format.check
- name: Lint Check
run: make lint.check
- name: Type Check
run: make type