mirror of
https://github.com/samsonjs/lake.git
synced 2026-03-25 08:55:49 +00:00
Create c-cpp.yml
This commit is contained in:
parent
f3d6b44eff
commit
35eb04bafe
1 changed files with 21 additions and 0 deletions
21
.github/workflows/c-cpp.yml
vendored
Normal file
21
.github/workflows/c-cpp.yml
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
name: C/C++ CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: configure
|
||||
run: ./configure
|
||||
- name: make
|
||||
run: make
|
||||
- name: make test
|
||||
run: make test
|
||||
Loading…
Reference in a new issue