Skip to content

Bump the actions group across 1 directory with 2 updates #149

Bump the actions group across 1 directory with 2 updates

Bump the actions group across 1 directory with 2 updates #149

Workflow file for this run

---
name: Tests
on: [push, pull_request]
jobs:
webhook:
permissions:
contents: read
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
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