Skip to content

Commit

Permalink
Add build and test steps in CI on pull request (#602)
Browse files Browse the repository at this point in the history
  • Loading branch information
doniacld authored Oct 18, 2021
1 parent 3f99b6c commit 0ee7866
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build and Test
on:
pull_request:
types: [opened, edited, synchronize, reopened]

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build
run: make build
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: test
run: make test

0 comments on commit 0ee7866

Please sign in to comment.