Skip to content

Bump appsignal from 4.3.3 to 4.4.0 in /web #1225

Bump appsignal from 4.3.3 to 4.4.0 in /web

Bump appsignal from 4.3.3 to 4.4.0 in /web #1225

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Gateway
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
defaults:
run:
working-directory: gateway
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: gateway/go.mod
cache-dependency-path: gateway/go.sum
- name: Build
run: go build
- name: Test
run: go test -v ./...