Skip to content

Use a default pepper value for Linting purpose #56

Use a default pepper value for Linting purpose

Use a default pepper value for Linting purpose #56

Workflow file for this run

---
name: Pytest
on:
workflow_dispatch:
push:
paths:
- "**/*.py"
pull_request:
paths:
- "**/*.py"
permissions: {}
jobs:
build:
name: Pytest
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
- name: Set up Python 3.13
uses: actions/[email protected]
with:
python-version: 3.13
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: pytest tests/