fix(deps): update module github.com/masterminds/sprig/v3 to v3.3.0 #179
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: | |
push: | |
branches: | |
- main | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Tool Versions | |
uses: jdx/mise-action@v2 | |
env: | |
GH_TOKEN: ${{ github.token }} | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
args: --timeout=5m | |
test: | |
name: go test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Tool Versions | |
uses: jdx/mise-action@v2 | |
env: | |
GH_TOKEN: ${{ github.token }} | |
- name: lintroller | |
run: go run github.com/getoutreach/lintroller/cmd/[email protected] -config lintroller.yaml ./... | |
- name: test | |
run: make test |