Skip to content

Commit

Permalink
Add CI runs of demo checks.
Browse files Browse the repository at this point in the history
  • Loading branch information
fragglet committed Sep 15, 2024
1 parent b894e75 commit ae81c6e
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Continuous Integration

on:
push:
branches:
- "trunk"
tags:
- "*"
paths-ignore:
- "**.md"
pull_request:
branches:
- "trunk"
paths-ignore:
- "**.md"
workflow_dispatch:

jobs:
build:
name: Statcheck test
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
submodules: true

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install make chocolate-doom python3 python3-yaml
- name: Run checks
run: |
make check

0 comments on commit ae81c6e

Please sign in to comment.