mirror of
https://github.com/opencontainers/runtime-spec.git
synced 2026-02-05 18:45:18 +01:00
24 lines
502 B
YAML
24 lines
502 B
YAML
name: Lint
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
check-format:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
- name: Run make -C schema fmt
|
|
run: make -C schema fmt
|
|
- name: Check for changes
|
|
run: git diff --exit-code
|
|
|
|
codespell:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: install deps
|
|
run: pip install --break-system-packages codespell==v2.4.1
|
|
- name: run codespell
|
|
run: codespell
|