Files
static-site-generator/.github/workflows/c-cpp.yml
2026-01-07 12:22:34 +01:00

20 lines
278 B
YAML

name: C/C++ CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: make
run: make -C src
- name: make check
run: make check -C src