Skip to content

Merge pull request #31 from ebram96/patch-1 #16

Merge pull request #31 from ebram96/patch-1

Merge pull request #31 from ebram96/patch-1 #16

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['2.7', '3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- 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
- name: Test Tasks
run: python tests/unit/testTask.py
- name: Test Jobs
run: python tests/unit/testJob.py
- name: Test Webhooks
run: python tests/unit/testWebhookSignature.py