Skip to content

v 0.0.35 rm screenshot #16

v 0.0.35 rm screenshot

v 0.0.35 rm screenshot #16

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: install packages
run: make install
- name: lint
run: make lint
- name: test
run: make test
- name: format
run: make format