mirror of
https://github.com/chocolate-doom/quickcheck.git
synced 2024-11-21 12:01:09 +00:00
ef816accb3
These were failing because some WADs require more than a 16MiB heap.
35 lines
601 B
YAML
35 lines
601 B
YAML
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:
|
|
- 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
|