Skip to content

Update GitHub Actions workflows #120

Update GitHub Actions workflows

Update GitHub Actions workflows #120

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
action:
- style
- lint
- test
- coverage
steps:
- run: pipx install poetry
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
cache: poetry
python-version: 3.11
- run: poetry install
- run: poetry run poe ${{ matrix.action }}