Skip to content

Commit

Permalink
ci: Use exact Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
ThiefMaster committed Sep 6, 2023
1 parent 2d7ca94 commit 9fd0fd6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: CI

env:
PYTHON_VERSION: '3.11.5'

on:
push:
branches:
Expand Down Expand Up @@ -41,7 +44,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: ${{ env.PYTHON_VERSION }}

- name: Install system dependencies
run: sudo apt-get install postgresql-client libpq-dev
Expand Down Expand Up @@ -131,7 +134,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: ${{ env.PYTHON_VERSION }}

- name: Setup Node
uses: actions/setup-node@v3
Expand Down Expand Up @@ -203,7 +206,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: ${{ env.PYTHON_VERSION }}

- name: Setup Node
uses: actions/setup-node@v3
Expand Down

0 comments on commit 9fd0fd6

Please sign in to comment.