fix: Output correct version (#168) #305
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: Go Build & Test | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
name: Build & Test | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
- name: Build & Test | |
run: | | |
go build -v | |
go test ./... | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v4 | |
with: | |
args: release --clean --snapshot --skip-publish | |
# Output tests | |
- name: Normal Output Test | |
run: go run main.go -- main.go | |
# ref. https://github.com/gfx/example-github-actions-with-tty | |
- name: Colored Output Test | |
if: runner.os == 'Linux' | |
shell: 'script -q -e -c "bash {0}"' | |
run: go run main.go -- main.go |