Skip to content

Bump github/codeql-action from 3.30.1 to 3.30.3 in the actions group #156

Bump github/codeql-action from 3.30.1 to 3.30.3 in the actions group

Bump github/codeql-action from 3.30.1 to 3.30.3 in the actions group #156

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@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.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