Skip to content

ci: add release workflow and update CI to latest action versions #90

ci: add release workflow and update CI to latest action versions

ci: add release workflow and update CI to latest action versions #90

Workflow file for this run

name: ci
on:
push:
workflow_dispatch:
jobs:
compile:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Set up python
uses: actions/setup-python@v6
with:
python-version: '3.8'
- name: Bootstrap poetry
run: curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
- name: Install dependencies
run: poetry install
- name: Compile
run: poetry run mypy .
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Set up python
uses: actions/setup-python@v6
with:
python-version: '3.8'
- name: Bootstrap poetry
run: curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
- name: Install dependencies
run: poetry install
- name: Test
run: poetry run pytest -rP .