Skip to content

Update golang.org/x/exp digest to d852ddb #242

Update golang.org/x/exp digest to d852ddb

Update golang.org/x/exp digest to d852ddb #242

Workflow file for this run

name: Build
on:
push:
branches:
- "*"
tags-ignore:
- "*"
pull_request:
types: [opened, reopened]
env:
GO_VERSION: "^1.20"
jobs:
dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- uses: goreleaser/goreleaser-action@v4
with:
args: release --snapshot --skip-sign
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run tests
run: make test