mirror of
https://github.com/tbamud/tbamud.git
synced 2026-02-16 16:41:44 +01:00
24 lines
440 B
YAML
24 lines
440 B
YAML
name: C/C++ CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: download munit
|
|
run: git submodule init && git submodule update
|
|
- name: configure
|
|
run: ./configure
|
|
- name: build tests
|
|
run: cd src && touch .accepted && make test
|
|
- name: build
|
|
run: make clean && make
|
|
|