Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
KunalSontakke authored Sep 6, 2024
1 parent 7337147 commit 9e20e9f
Showing 1 changed file with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,31 @@ name: JazzX

on:
push:
branches:
- master
branches:
- master

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- uses: actions/checkout@v4

- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest requests jinja2
if [ -f Requirements/requirements.txt ]; then pip install -r Requirements/requirements.txt; fi
- name: Test with pytest
run: pytest API_Requests/Tests -v -s --log-cli-level=INFO


- name: Test with pytest
run: pytest API_Requests/Tests -v -s -rA

0 comments on commit 9e20e9f

Please sign in to comment.