Skip to content

chore(deps): update go sha to latest for 1.19 #229

chore(deps): update go sha to latest for 1.19

chore(deps): update go sha to latest for 1.19 #229

Workflow file for this run

# This file was copied from the following URL and modified:
# https://github.com/golangci/golangci-lint-action/blob/master/README.md#how-to-use
name: golangci
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
permissions:
contents: read
pull-requests: read
jobs:
golangci:
name: lint
strategy:
matrix:
go-version: [1.18.x, 1.19.x]
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.50.1 # current version at time of commit
args: --timeout 10m
- name: go-test
run: go test ./...