Skip to content

Commit 736d41d

Browse files
authored
GitHub Actions: Add continuous integration tests
1 parent 568fb33 commit 736d41d

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: ci
2+
on: [pull_request, push]
3+
jobs:
4+
codespell_and_ruff:
5+
runs-on: ubuntu-24.04-arm
6+
steps:
7+
- uses: actions/checkout@v4
8+
- uses: codespell-project/actions-codespell@v2
9+
- uses: astral-sh/ruff-action@v3
10+
11+
test_cmn_diagram:
12+
runs-on: ubuntu-24.04-arm
13+
steps:
14+
- uses: actions/checkout@v4
15+
- run: |
16+
sudo src/python cmn_discover.py
17+
src/python cmn_detect_cpu.py
18+
src/python cmn_diagram_py
19+
echo "====="
20+
cat ~/.cache/arm/cmn-system.json

0 commit comments

Comments
 (0)