Skip to content
This repository has been archived by the owner on Nov 23, 2023. It is now read-only.

Merge pull request #36 from go-faster/dependabot/go_modules/go.uber.o… #116

Merge pull request #36 from go-faster/dependabot/go_modules/go.uber.o…

Merge pull request #36 from go-faster/dependabot/go_modules/go.uber.o… #116

Workflow file for this run

name: ci
on:
push:
tags:
- v*
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
flags: [""]
arch:
- amd64
runner:
- ubuntu-latest
go:
- 1.21.x
include:
- arch: 386
runner: ubuntu-latest
go: 1.21.x
- arch: amd64
runner: ubuntu-latest
flags: "-race"
go: 1.21.x
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v4
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@v3
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 ./...