quickcheck/.github/workflows/ci.yml

36 lines
601 B
YAML
Raw Permalink Normal View History

2024-09-15 16:46:37 +00:00
name: Continuous Integration
on:
push:
branches:
2024-09-15 16:48:01 +00:00
- "master"
2024-09-15 16:46:37 +00:00
tags:
- "*"
paths-ignore:
- "**.md"
pull_request:
branches:
2024-09-15 16:48:01 +00:00
- "master"
2024-09-15 16:46:37 +00:00
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