Skip to content

chore(deps): bump golang.org/x/text from 0.3.7 to 0.3.8 #94

chore(deps): bump golang.org/x/text from 0.3.7 to 0.3.8

chore(deps): bump golang.org/x/text from 0.3.7 to 0.3.8 #94

Workflow file for this run

name: Main
on:
push:
paths-ignore:
- "*.md"
pull_request:
paths-ignore:
- "*.md"
jobs:
build-app:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v2
with:
go-version: 1.17
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Test
run: make test-ci
- name: Build
run: go build -race