diff options
| author | Ben Woodward <ben@bdw.to> | 2021-02-28 10:34:29 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-28 10:34:29 -0800 |
| commit | afa5548e8dd9a4665e52acad65f9359e41d367b5 (patch) | |
| tree | 2bf0ad9604fea39104dd40c7e5737fe445afd600 /.github/workflows/pull_request.yml | |
| parent | 1fe19f9615891a8d6f7d5a8fc45c4de36172c16c (diff) | |
Github Actions CI (#20)
Replace CircleCI with Github Actions
Diffstat (limited to '.github/workflows/pull_request.yml')
| -rw-r--r-- | .github/workflows/pull_request.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml new file mode 100644 index 0000000..5a2ee16 --- /dev/null +++ b/.github/workflows/pull_request.yml | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | name: ci | ||
| 2 | on: pull_request | ||
| 3 | jobs: | ||
| 4 | build: | ||
| 5 | runs-on: ubuntu-latest | ||
| 6 | steps: | ||
| 7 | - | ||
| 8 | name: Checkout | ||
| 9 | uses: actions/checkout@v2 | ||
| 10 | - | ||
| 11 | name: Set up Docker | ||
| 12 | uses: docker/setup-buildx-action@v1 | ||
| 13 | - | ||
| 14 | name: Build | ||
| 15 | run: make build | ||
