mirror of
https://github.com/chocolate-doom/statcheck.git
synced 2024-11-24 21:32:47 +00:00
Add Github CI test
For a limited set of PWAD demos since we can't test with the commercial IWADs.
This commit is contained in:
parent
6204aa00fb
commit
d9e4a1ff47
1 changed files with 40 additions and 0 deletions
40
.github/workflows/ci.yml
vendored
Normal file
40
.github/workflows/ci.yml
vendored
Normal file
|
@ -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
|
Loading…
Reference in a new issue