Skip to content

Impurity annotation #177

Impurity annotation

Impurity annotation #177

Workflow file for this run

name: Run make under CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 1
show-progress: false
- name: Install shellcheck and checkbashisms
run: |
sudo apt -q update
sudo apt -yq install shfmt shellcheck devscripts
- name: Install markdownlint
run: npm install markdownlint-cli2 --global
- name: Install Python tools
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
uv tool install mypy
uv tool install ruff
- name: style check
run: |
make style-check