mirror of
https://github.com/adulau/ssldump.git
synced 2024-11-07 12:06:27 +00:00
First test workflow
This commit is contained in:
parent
36496e31db
commit
9080357499
1 changed files with 19 additions and 0 deletions
19
.github/workflows/ccpp.yml
vendored
Normal file
19
.github/workflows/ccpp.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
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
|
Loading…
Reference in a new issue