Skip to content

Commit

Permalink
Removed usage of variables in workflow file.
Browse files Browse the repository at this point in the history
  • Loading branch information
filiptypjeu committed Aug 6, 2023
1 parent 8f1aa36 commit e118acc
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/django-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,15 @@ on:
jobs:
build:
runs-on: ubuntu-latest
env:
PYTHON_VERSION: 3.10

steps:
- uses: actions/checkout@v3
- name: Install OpenLDAP dependencies
run: sudo apt install libsasl2-dev python3-dev libldap2-dev libssl-dev
- name: Set up Python ${{ PYTHON_VERSION }}
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ PYTHON_VERSION }}
python-version: 3.10
- name: Install latest pip
run: python -m pip install --upgrade pip
- name: Install python dependencies
Expand Down

0 comments on commit e118acc

Please sign in to comment.