Skip to content

Bump actions/checkout from 6.0.0 to 6.0.1 #689

Bump actions/checkout from 6.0.0 to 6.0.1

Bump actions/checkout from 6.0.0 to 6.0.1 #689

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Set up Python
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: '3.11'
- name: Upgrade python tooling
run: python -m pip install --upgrade pip setuptools wheel
- name: Install dependencies
run: python -m pip install -r requirements.txt
- name: Install lint dependencies
run: python -m pip install --upgrade mypy
- name: Lint
run: python -m mypy -p linehaul
- name: Install test dependencies
run: python -m pip install pytest pretend hypothesis pyaml
- name: Test
run: python -m pytest test_functions.py tests/unit