Skip to content

Ruff badge and action versions #406

Ruff badge and action versions

Ruff badge and action versions #406

Workflow file for this run

name: pull_request
on:
pull_request:
branches:
- master
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.8"
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Requirements
run: make requirements
- name: Build
run: make build
- name: Lint check (ruff)
run: make check-lint
- name: Type check (mypy)
run: make check-type
- name: Test
run: make test