Skip to content

Commit

Permalink
Update multi_build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mkelly authored Oct 6, 2023
1 parent 9664aff commit 3c99ea6
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/multi_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ on:
pull_request:

jobs:
build_linux:
runs-on: mkelly-runner
steps:
- name: Checkout Sources
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: "1.20"
check-latest: true
- name: Build
run: make build-linux
- name: Scan Third Party Dependency Licenses
run: |
go install github.com/uw-labs/lichen@v0.1.7
lichen --config=./license.yaml $(find dist/collector_* dist/updater_*)
build_darwin:
runs-on: self-hosted
steps:
Expand Down

0 comments on commit 3c99ea6

Please sign in to comment.