Skip to content

Merge pull request #236 from gotd/dependabot/github_actions/actions/c… #440

Merge pull request #236 from gotd/dependabot/github_actions/actions/c…

Merge pull request #236 from gotd/dependabot/github_actions/actions/c… #440

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
run:
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: true
matrix:
flags: [""]
arch:
- amd64
runner:
- ubuntu-latest
go:
- 1.21.x
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Get Go environment
id: go-env
run: |
echo "::set-output name=cache::$(go env GOCACHE)"
echo "::set-output name=modcache::$(go env GOMODCACHE)"
- name: Set up cache
uses: actions/cache@v4.0.2
with:
path: |
${{ steps.go-env.outputs.cache }}
${{ steps.go-env.outputs.modcache }}
key: test-${{ runner.os }}-${{ matrix.arch }}-go-${{ matrix.go }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
test-${{ runner.os }}-${{ matrix.arch }}-go-${{ matrix.go }}-
- name: Run tests
env:
GOARCH: ${{ matrix.arch }}
GOFLAGS: ${{ matrix.flags }}
run: go test --timeout 5m ./...