Skip to content

register events to avoid processing duplicate events #36

register events to avoid processing duplicate events

register events to avoid processing duplicate events #36

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.6, 3.7, 3.8, 3.9, '3.10']
fail-fast: false
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{matrix.python}}
- name: Install required Python packages + pytest
run: |
python -m pip install -r requirements.txt
python -m pip install pytest
- name: Run test suite
run: |
./test.sh