Skip to content

chore(deps): bump golangci/golangci-lint-action from 4.0.0 to 5.1.0 #5

chore(deps): bump golangci/golangci-lint-action from 4.0.0 to 5.1.0

chore(deps): bump golangci/golangci-lint-action from 4.0.0 to 5.1.0 #5

Workflow file for this run

name: PR Checks
on:
pull_request:
branches:
- main
jobs:
verify-connect:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22.x
cache-dependency-path: ./connect/go.mod
- name: golangci-lint
uses: golangci/golangci-lint-action@9d1e0624a798bb64f6c3cea93db47765312263dc #v5.1.0
with:
version: v1.57.2
working-directory: ./connect/
verify-dotnet:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: .NET Build
working-directory: ./dotnet/server
run: dotnet build --configuration Release