Skip to content

chore(deps): bump the gomod group with 4 updates #39

chore(deps): bump the gomod group with 4 updates

chore(deps): bump the gomod group with 4 updates #39

name: '[PR] Presubmit Checks'
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
paths:
- '**.go'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
env:
GO_VERSION: 'stable'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
check-latest: true
- name: Lint
uses: golangci/golangci-lint-action@v4
with:
skip-pkg-cache: true
skip-build-cache: true
version: 'latest'
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
check-latest: true
- name: Test
run: make test