Skip to content

Bump goreleaser/goreleaser-action from 5.0.0 to 6.0.0 (#631) #1169

Bump goreleaser/goreleaser-action from 5.0.0 to 6.0.0 (#631)

Bump goreleaser/goreleaser-action from 5.0.0 to 6.0.0 (#631) #1169

Workflow file for this run

name: "Continuous Integration"
on:
push:
branches:
- main
pull_request:
permissions: read-all
jobs:
run-tests:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7
with:
go-version: "1.21"
- name: Run tests
run: make test/unit
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run-linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7
with:
go-version: "1.21"
- name: golangci-lint
uses: golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86
with:
args: --timeout=30m
check-scorecard-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- name: Run tests
run: make test/scorecard-version
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}