Skip to content

Commit

Permalink
Add GitHub Actions workflow
Browse files Browse the repository at this point in the history
To check the code builds and runs.
  • Loading branch information
StevenMaude committed Jun 10, 2020
1 parent 49eb901 commit ff7d556
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI
on:
push:
branches:
master
pull_request:

jobs:
build:
name: Build and run
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Build
run: |
make build
- name: Run
run: |
./associate-ebs 2>&1 | grep "usage: associate-ebs"

0 comments on commit ff7d556

Please sign in to comment.