You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add new endpoints for Events and Webhooks
* Add new endpoints for ApiKeys
* change timeout
* test ci
* test ci
* test ci
* test ci
* test ci
* change mock url
* update readme run tests
* add order tests
* change mock url
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
2
-
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3
-
#
4
-
# This file is auto-generated by OpenAPI Generator (https://openapi-generator.tech)
5
-
6
-
name: go CI
1
+
name: Golang CI
7
2
on:
8
3
push:
9
-
branches: [ main ]
4
+
branches: [ main, master ]
10
5
pull_request:
11
-
branches: [ main ]
6
+
branches: [ main, master ]
12
7
jobs:
13
-
test:
8
+
tests:
9
+
strategy:
10
+
matrix:
11
+
sdk: [1.16, 1.17, 1.18, 1.19, 1.20.x]
14
12
runs-on: ubuntu-latest
13
+
timeout-minutes: 5
15
14
steps:
16
15
- uses: actions/checkout@v3
17
-
- name: Test
18
-
run: DOCKER_BUILDKIT=1 COMPOSE_DOCKER_CLI_BUILD=1 docker-compose -f docker-compose.yml -p ${{ github.run_id }} run --rm service go test -v --race ./...
19
-
- name: remove containers
20
-
if: always()
21
-
run: docker-compose -f docker-compose.yml -p ${{ github.run_id }} down
0 commit comments