mirror of
https://github.com/tbamud/tbamud.git
synced 2026-04-30 04:41:51 +02:00
Agent-Logs-Url: https://github.com/tbamud/tbamud/sessions/02b27398-2736-4f5c-bbd9-b212340323f8 Co-authored-by: welcor <357770+welcor@users.noreply.github.com>
27 lines
420 B
YAML
27 lines
420 B
YAML
name: C/C++ CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request_target:
|
|
branches: [ "master" ]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: configure
|
|
run: ./configure
|
|
- name: build
|
|
working-directory: src
|
|
run: touch .accepted && make
|
|
- name: test
|
|
working-directory: tests
|
|
run: make test
|