diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 04dd2fd..0e0c431 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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