Skip to content

Merge branch 'main' of github.com:mnot/httplint #8

Merge branch 'main' of github.com:mnot/httplint

Merge branch 'main' of github.com:mnot/httplint #8

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Cache venv
uses: actions/cache@v3
with:
path: .venv
key: ${{ runner.os }}-${{ matrix.python-version }}-venv-${{ hashFiles('**/requirements.txt') }}
- name: Set up venv
run: make venv
- name: Typecheck
run: make typecheck
- name: Lint
run: make lint