Skip to content

Commit d137075

Browse files
chore: added ci workflow (#2)
1 parent 6621d93 commit d137075

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
push:
8+
branches:
9+
- main
10+
11+
jobs:
12+
pre-commit:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
with:
17+
submodules: recursive
18+
fetch-depth: 0
19+
- uses: actions/setup-python@v4
20+
with:
21+
python-version: '3.11'
22+
- uses: pre-commit/action@v3.0.1

0 commit comments

Comments
 (0)