Skip to content

Commit

Permalink
Merge pull request #2 from Curewell-Homeo-Clinic/dev
Browse files Browse the repository at this point in the history
Fix: worflow duplicate properties fix
  • Loading branch information
celeroncoder authored Nov 27, 2021
2 parents 2fe9a54 + a9d2e61 commit 6ee6189
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions .github/workflows/django.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Django CI

on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]

jobs:
build:
Expand All @@ -19,7 +19,6 @@ jobs:
TWILIO_AUTH_TOKEN: ${{ secrets.TWILIO_AUTH_TOKEN }}
TWILIO_PHONE_NUMBER: ${{ secrets.TWILIO_PHONE_NUMBER }}
CONSULTATION_FEE: ${{ secrets.CONSULTATION_FEE }}
CONSULTATION_FEE: ${{ secrets.CONSULTATION_FEE }}
REDIS_URL: ${{ secrets.REDIS_URL }}
REDIS_PASSWORD: ${{ secrets.REDIS_PASSWORD }}
runs-on: ubuntu-latest
Expand All @@ -29,15 +28,15 @@ jobs:
python-version: [3.9]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
run: |
python manage.py test
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
run: |
python manage.py test

0 comments on commit 6ee6189

Please sign in to comment.