Skip to content

Commit 8a5b088

Browse files
committed
use dev graphql endpoint in CI
1 parent 9f28b36 commit 8a5b088

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.github/workflows/build.yml

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ on:
33
pull_request:
44
types: [opened, synchronize]
55

6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
9+
610
jobs:
711
build:
812
runs-on: ubuntu-20.04

.github/workflows/sonar.yml

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ on:
33
push:
44
branches: [main]
55

6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
9+
610
jobs:
711
build:
812
name: Analyze

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ dependencies {
5858

5959
graphql {
6060
client {
61-
endpoint = "http://localhost:8080/api/graphql"
61+
endpoint = env["GRAPHQL_ENDPOINT"] ?: "https://atlas.dev.macarena.ceo/api/graphql"
6262
packageName = "com.possible_triangle.atheneum_connector.generated"
6363
serializer = GraphQLSerializer.KOTLINX
6464
}

0 commit comments

Comments
 (0)