Skip to content

Commit a206b64

Browse files
authored
Merge pull request #8 from zluudg/leon/mgmtcli-issue-7/pr-compilation-check
Compile using 'make' as a test for PRs
2 parents 05c7f4a + b423083 commit a206b64

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @dnstapir/core

.github/workflows/pr.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CI
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Test build before merge
11+
uses: actions/checkout@v2
12+
13+
- name: Test build
14+
run: |
15+
make

0 commit comments

Comments
 (0)