Skip to content

Commit

Permalink
Add Github CI test
Browse files Browse the repository at this point in the history
For a limited set of PWAD demos since we can't test with the commercial
IWADs.
fragglet committed Sep 5, 2024
1 parent 6204aa0 commit d9e4a1f
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Continuous Integration

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

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

steps:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install make chocolate-doom python3 python3-yaml
- name: Override demos list
run: |
echo demos/pwads/av/fast/af253503.zip/af253503.lmp \
demos/pwads/hr/movie/11hr7159.zip/11hr7159.lmp \
demos/pwads/mm/movie/30mm8356.zip/30mm8356.lmp \
demos/pwads/mm2/max/m2221807.zip/m2221807.lmp \
demos/pwads/requiem/movie/6039rq01.zip/6039rq01.lmp \
> demos.txt
- name: Test
run: |
make check

0 comments on commit d9e4a1f

Please sign in to comment.