-
Notifications
You must be signed in to change notification settings - Fork 2
32 lines (27 loc) · 871 Bytes
/
make.yml
File metadata and controls
32 lines (27 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install Python `uv`
uses: astral-sh/setup-uv@v8.1.0
- run: sudo apt update
- name: Install shellcheck and checkbashisms
run: sudo apt -y install shfmt shellcheck devscripts
- name: Install markdownlint
run: npm install markdownlint-cli2 --global
- name: Install Python `uv`
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Sync Python dependencies
run: uv sync --all-groups --no-install-project
- name: style check
run: make style-check