Skip to content

Bump softprops/action-gh-release from 2 to 3 in the actions group across 1 directory #288

Bump softprops/action-gh-release from 2 to 3 in the actions group across 1 directory

Bump softprops/action-gh-release from 2 to 3 in the actions group across 1 directory #288

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: make test
- name: Integration tests
run: make test-integration