Bump golangci/golangci-lint-action from 02ee5067dca7bfdce7a74e00ec4acac190dead4e to 774c35bcccffb734694af9e921f12f57d882ef74 #182
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
tags: | |
- rc* | |
- v* | |
pull_request: | |
branches: | |
- master | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/[email protected] | |
- name: Install Go | |
uses: actions/[email protected] | |
with: | |
go-version-file: go.mod | |
cache-dependency-path: go.sum | |
- name: Setup GO env | |
run: go env -w CGO_ENABLED=0 | |
- name: Run Tests | |
run: make test | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |