Skip to content

Commit

Permalink
copy pasted in yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
MueezKhan246 committed Jan 11, 2022
1 parent b1a024f commit 70dce00
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ name: Python application
on:
push:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
steps:
- uses: actions/checkout@v2
- name: Install dependencies
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
- name: Install dependencies
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

0 comments on commit 70dce00

Please sign in to comment.