Merge pull request #93 from dbschenker/dependabot/go_modules/github.c… #162
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: Test | |
on: [push] | |
jobs: | |
test: | |
name: Test | |
strategy: | |
matrix: | |
go-version: [1.22.x] | |
# platform: [ubuntu-latest, macos-latest, windows-latest] | |
platform: [ubuntu-latest] | |
runs-on: ${{matrix.platform}} | |
steps: | |
- name: Set up Go ${{matrix.go-version}} | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{matrix.go-version}} | |
id: go | |
- name: Cache Go modules packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Download Go modules | |
run: go mod download | |
env: | |
GOPROXY: https://proxy.golang.org | |
- name: Build | |
run: go build ./... | |
- name: Test | |
run: go test |