We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31150de commit 532dbdcCopy full SHA for 532dbdc
.github/workflows/ci.yml
@@ -0,0 +1,23 @@
1
+name: Smoke Test
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
+jobs:
10
+ smoke-test:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v6
14
+ - uses: actions/setup-python@v6
15
+ with:
16
+ python-version-file: .python-version
17
+ cache: 'pip'
18
19
+ - name: Install dependencies
20
+ run: pip install -r requirements.txt
21
22
+ - name: Run Django check
23
+ run: python manage.py check
0 commit comments