Skip to content

Webhook URL added to the config. #2

Webhook URL added to the config.

Webhook URL added to the config. #2

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main #
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]

Check failure on line 19 in .github/workflows/pytest.yml

View workflow run for this annotation

GitHub Actions / Run Tests

Invalid workflow file

The workflow is not valid. .github/workflows/pytest.yml (Line: 19, Col: 27): A sequence was not expected
- name: Install dependencies
run: pip install -r requirements.txt # Replace with the path to your requirements file
- name: Run tests
run: python3 -m unittest tests