mirror of
https://github.com/adulau/ssldump.git
synced 2024-11-07 12:06:27 +00:00
20 lines
260 B
YAML
20 lines
260 B
YAML
|
name: C/C++ CI
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
pull_request:
|
||
|
branches: [ master ]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: configure
|
||
|
run: ./configure
|
||
|
- name: make
|
||
|
run: make
|