Skip to content

Update GitHub Actions #4

Update GitHub Actions

Update GitHub Actions #4

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: jpetrucciani/black-check@master
pytest:
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
python-version: ["3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "poetry"
- name: Install Dependencies
run: |
poetry env use "${{ matrix.python-version }}"
poetry install --no-interaction --no-cache
- name: Test with pytest
run: poetry run pytest --dist no -n 0