Skip to content

ci: bump the github-actions group across 1 directory with 2 updates #13

ci: bump the github-actions group across 1 directory with 2 updates

ci: bump the github-actions group across 1 directory with 2 updates #13

Workflow file for this run

name: test
# pytest suite for textleaks.
#
# All run: blocks use no github.event.* inputs (safe pattern).
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
test:
name: pytest
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: pip install -e ".[dev]"
- name: Run pytest
run: pytest -v