Skip to content

Commit

Permalink
combining 2 steps of the action into 1
Browse files Browse the repository at this point in the history
  • Loading branch information
MueezKhan246 committed Jan 11, 2022
1 parent 8b16cd8 commit d5be6b1
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Python application

on:
push:
branches: [ main ]
on: push
# :
# branches: [ main ]

jobs:
build:
Expand All @@ -12,9 +12,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: /
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test selenium
run: /
python manage.py test
python manage.py test
# - name: Test selenium
# run: /

0 comments on commit d5be6b1

Please sign in to comment.