#293 ship alpine certs with docker #621
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 | |
- name: Setup | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '>=1.20.0' | |
# otel-cli's main test needs the binary built ahead of time | |
# also this validates it can acutally build before we get there | |
- name: Build | |
run: go build -v | |
- name: Test | |
run: go test -v ./... |