Skip to content

Commit

Permalink
Merge pull request #289 from cnabio/gh-actions
Browse files Browse the repository at this point in the history
Add github action that builds project
  • Loading branch information
carolynvs authored Jun 10, 2022
2 parents a63ee2e + d740626 commit 91140cb
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json

name: build
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version-file: go.mod
cache: true
cache-dependency-path: go.sum
- name: Bootstrap
run: make bootstrap
- name: Build
run: make fetch-schemas build
- name: Build (Windows)
run: GOOS=windows make build
- name: Build (Darwin)
run: GOOS=darwin make build
- name: Lint
run: make lint
- name: Test
run: make coverage

0 comments on commit 91140cb

Please sign in to comment.