Skip to content

Bump github.com/riverqueue/river/rivershared from 0.27.0 to 0.28.0 in the go-dependencies group across 1 directory #76

Bump github.com/riverqueue/river/rivershared from 0.27.0 to 0.28.0 in the go-dependencies group across 1 directory

Bump github.com/riverqueue/river/rivershared from 0.27.0 to 0.28.0 in the go-dependencies group across 1 directory #76

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
check-latest: true
go-version-file: "go.mod"
- name: Display Go version
run: go version
- name: Test
run: make test
golangci-lint:
runs-on: ubuntu-latest
env:
GOLANGCI_LINT_VERSION: v2.4.0
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
check-latest: true
go-version-file: "go.mod"
- name: Lint
uses: golangci/golangci-lint-action@v7
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}