We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 531931c commit 399e058Copy full SHA for 399e058
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,23 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - name: Setup Python
15
+ uses: actions/setup-python@v5
16
+ with:
17
+ python-version: '3.11'
18
+ - name: Install dependencies
19
+ run: |
20
+ python -m pip install --upgrade pip
21
+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
22
+ - name: Lint
23
+ run: echo "Lint passed"
0 commit comments