We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1f129f commit 1efb01aCopy full SHA for 1efb01a
.github/workflows/pythonapp.yml
@@ -8,13 +8,13 @@ jobs:
8
runs-on: ubuntu-latest
9
10
steps:
11
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
12
- run: |
13
git fetch --prune --unshallow
14
- - name: Set up Python 3.8
15
- uses: actions/setup-python@v1
+ - name: Set up Python 3.11
+ uses: actions/setup-python@v4
16
with:
17
- python-version: 3.8
+ python-version: 3.11
18
- name: Install dependencies
19
run: |
20
python -m pip install --upgrade pip
docker-compose.yml
@@ -34,7 +34,7 @@ services:
34
command: ./entrypoint.sh
35
volumes:
36
- .:/app
37
- - .db_data/db.sqlite3:/db.sqlite3
+ - ./db.sqlite3:/db.sqlite3
38
- static_volume:/usr/src/app/jobs/staticfiles
39
ports:
40
- "8000:8000"
0 commit comments