Skip to content

Commit

Permalink
chore: create CI.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrienHdz authored Oct 10, 2023
1 parent 5c3045a commit 6e79364
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
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

0 comments on commit 6e79364

Please sign in to comment.