Skip to content

replaced secrets and vars in workflow #1 #6

replaced secrets and vars in workflow #1

replaced secrets and vars in workflow #1 #6

Workflow file for this run

name: check
on:
pull_request:
branches: [ '*' ]
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '^1.22'
- name: Install golangci-lint
run: |
go install github.com/golangci/golangci-lint/cmd/[email protected] # Use a specific version
- name: Run golangci-lint
run: golangci-lint run
- name: Install Dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test
run: go test