Skip to content

Commit

Permalink
change python-version on github actions to string
Browse files Browse the repository at this point in the history
  • Loading branch information
sirodoht authored Dec 5, 2023
1 parent b52e202 commit 75323bb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/django-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ jobs:
- 5432:5432

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: 3.10
python-version: '3.10'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -38,8 +38,8 @@ jobs:
python manage.py collectstatic --noinput
DEBUG=1 python manage.py test
env:
SECRET_KEY: "thisisthesecretkey"
DATABASE_URL: "postgres://postgres:postgres@localhost:5432/postgres"
SECRET_KEY: 'thisisthesecretkey'
DATABASE_URL: 'postgres://postgres:postgres@localhost:5432/postgres'
- name: Lint
run: |
touch .envrc
Expand Down

0 comments on commit 75323bb

Please sign in to comment.