Skip to content

chore: Update CI.yml #2

chore: Update CI.yml

chore: Update CI.yml #2

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