Skip to content

Commit

Permalink
Merge pull request #28 from kubecost/mmd/build-action
Browse files Browse the repository at this point in the history
Add Action to build on pull requests
  • Loading branch information
michaelmdresser authored Mar 9, 2021
2 parents 911fe20 + b3c7426 commit 390df57
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: PR - build

on:
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Make build
run: |
make build

0 comments on commit 390df57

Please sign in to comment.