Skip to content

fix(client): api changes #58

fix(client): api changes

fix(client): api changes #58

Workflow file for this run

name: Test apps
on:
push:
branches: [master]
paths:
- "**/*.go"
- go.mod
- go.sum
- Dockerfile
- .github/workflows/test-apps.yml
- .github/workflows/build-apps.yml
pull_request:
branches: [master]
paths:
- "**/*.go"
- go.mod
- go.sum
- Dockerfile
- .github/workflows/test-apps.yml
- .github/workflows/build-apps.yml
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Run tests
run: go test -v ./...