Skip to content

chore: create CI.yml #1

chore: create CI.yml

chore: create CI.yml #1

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- '**/README.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.10
- name: Install dependencies
run:
make install
- name: Lint with Ruff
run:
make lint
- name: Format code with Python black
run:
make format