Skip to content

Commit 532dbdc

Browse files
committed
Setup a GitHub action workflow to run basic checks
1 parent 31150de commit 532dbdc

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)