mirror of
https://github.com/samsonjs/lake.git
synced 2026-03-25 08:55:49 +00:00
19 lines
254 B
YAML
19 lines
254 B
YAML
name: C/C++ CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: make
|
|
run: make
|
|
- name: make test
|
|
run: make test
|