Skip to content

add .nojekyll to docs/ to disable Jekyll processing (#24) #29

add .nojekyll to docs/ to disable Jekyll processing (#24)

add .nojekyll to docs/ to disable Jekyll processing (#24) #29

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install package and test dependencies
run: pip install -e ".[test]"
- name: Run tests
run: pytest tests/ -v
env:
SNACK_GITHUB_CLIENT_ID: ${{ secrets.SNACK_GITHUB_CLIENT_ID }}