Skip to content

Commit 83e70df

Browse files
authored
Create ci.yml
1 parent 07d23ee commit 83e70df

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/ci.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- name: Set up Python 3.12
15+
uses: actions/setup-python@v3
16+
with:
17+
python-version: "3.12"
18+
19+
- name: Run linting
20+
run: |
21+
pre-commit run --all-files

0 commit comments

Comments
 (0)