Skip to content

build(deps): bump github.com/oracle/coherence-go-client from 1.2.0 to 1.2.1 in /coherence #82

build(deps): bump github.com/oracle/coherence-go-client from 1.2.0 to 1.2.1 in /coherence

build(deps): bump github.com/oracle/coherence-go-client from 1.2.0 to 1.2.1 in /coherence #82

Workflow file for this run

on:
push:
branches:
- master
- main
paths:
- 'coherence/**'
pull_request:
paths:
- 'coherence/**'
name: "Tests Coherence"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.19.x
- 1.20.x
- 1.21.x
- 1.22.x
steps:
- name: Fetch Repository
uses: actions/checkout@v4
- name: Startup Coherence
run: |
docker run -d -p 1408:1408 -p 30000:30000 ghcr.io/oracle/coherence-ce:23.09.2
sleep 30
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
run: cd ./coherence && COHERENCE_SESSION_DEBUG=true go clean -testcache && go test ./... -v -race