Skip to content

Merge pull request #2 from includeamin/improve-readme #13

Merge pull request #2 from includeamin/improve-readme

Merge pull request #2 from includeamin/improve-readme #13

Workflow file for this run

name: Lint and Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: [ "3.11", "3.12", "3.13"]
poetry-version: ["latest"]
os: [ubuntu-22.04, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v3
with:
poetry-version: ${{ matrix.poetry-version }}
- name: install dependencies
run: poetry install
- name: lint
run: make lint
- name: test
run: make test