Skip to content

fix: chronological Discord PR-open notification order #120

fix: chronological Discord PR-open notification order

fix: chronological Discord PR-open notification order #120

Workflow file for this run

name: Python Tests
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev]
- name: Run tests
run: pytest