Skip to content

build(deps): bump golang.org/x/net from 0.8.0 to 0.17.0 #121

build(deps): bump golang.org/x/net from 0.8.0 to 0.17.0

build(deps): bump golang.org/x/net from 0.8.0 to 0.17.0 #121

Workflow file for this run

name: CI - test
on:
push:
branches:
env:
GOFLAGS: -mod=readonly
jobs:
build_keycloakUpdater:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Build package
run: go build -v .
- name: Unit Tests
run: go test ./...
- name: Integration Tests
run: go test -tags=integration