Skip to content

Commit

Permalink
misc(ci): Verbose, latest
Browse files Browse the repository at this point in the history
  • Loading branch information
Kissaki committed Mar 14, 2024
1 parent 8166827 commit 73b8996
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
# This workflow will build a golang project. For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.9', '1.10.x', '1.14.x' ]
name: Go ${{ matrix.go }}
steps:
- uses: actions/checkout@v4
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build ./...
run: go build -v ./...
- name: Test
run: go test -v ./...

0 comments on commit 73b8996

Please sign in to comment.