Skip to content

[HOTFIX] change list backets method from HEAD to POST. And simplify migration on your server, example for languages #2

[HOTFIX] change list backets method from HEAD to POST. And simplify migration on your server, example for languages

[HOTFIX] change list backets method from HEAD to POST. And simplify migration on your server, example for languages #2

Workflow file for this run

name: Upload Go test results
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.19', '1.20', '1.21.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: go get .
- name: Test with Go
run: go test ./api/ -json