mirror of
https://github.com/jb55/nostril.git
synced 2024-11-09 20:49:06 -05:00
18 lines
227 B
YAML
18 lines
227 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: make
|
||
|
run: make
|