Skip to content

Add launched in to fiat #17

Add launched in to fiat

Add launched in to fiat #17

Workflow file for this run

name: package-checks
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: install deps
run: |
poetry install
- name: Check style
run: |
poetry run make style
- name: Run unit tests
run: |
poetry run make tests