Skip to content

Merge pull request #36 from QuLogic/redir-contribute #110

Merge pull request #36 from QuLogic/redir-contribute

Merge pull request #36 from QuLogic/redir-contribute #110

Workflow file for this run

---
name: Tests
on: [push, pull_request]
jobs:
webhook:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r webhook/dev-requirements.txt
git config --global user.name "GitHub CI Bot"
git config --global user.email "[email protected]"
- name: Run tests
run: pytest webhook