Skip to content

Safer HTTP method for PUT #2

Safer HTTP method for PUT

Safer HTTP method for PUT #2

Workflow file for this run

name: Test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.14"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r dev_requirements.txt
- name: Lint
run: |
pylint . --recursive=y
- name: Test
run: |
python -m coverage run -m pytest
python -m coverage report