Bump golangci/golangci-lint-action from c7bab6f874a90c53ecf7e5c027cf93430c8aac17 to 0ddaf3ca3f72ecd38179bb39e8f0d56d69b1e8fc #134
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/checkout@v4.1.7 | |
- name: Install Go | |
uses: actions/setup-go@v5.0.2 | |
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 }} |