Build #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
# Build only triggers once lint and test workflow successfully completes | |
workflow_run: | |
workflows: [Lint] | |
types: | |
- completed | |
jobs: | |
dagger-build: | |
runs-on: ubuntu-latest | |
# unless you specify the success on the event, | |
# this job will also run if the lint workflow was skipped(which is also the case if the condition for the file extension type is false). | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
steps: | |
- | |
name: Checkout repository | |
uses: actions/checkout@v4 | |
- | |
name: Setup go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '>=1.22' | |
- | |
name: Install | |
run: go get dagger.io/dagger@latest | |
- | |
name: Install Dagger CLI | |
run: cd /usr/local && { curl -L https://dl.dagger.io/dagger/install.sh | sh; cd -; } | |
- | |
name: Build with Dagger | |
run: dagger run go run ci/main.go | |