Skip to content

Commit de38377

Browse files
authored
Don't touch GCP from GH workflows (#192)
* Don't touch GCP from GH workflows * Fix
1 parent 97d6adf commit de38377

6 files changed

Lines changed: 10 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,5 @@ jobs:
4040
steps:
4141
- uses: actions/checkout@v4
4242
- uses: ./.github/actions/setup
43-
- uses: google-github-actions/auth@v2
44-
with:
45-
credentials_json: "${{ secrets.GOOGLE_CREDENTIALS }}"
4643
- run: sbt jacoco
4744
- uses: codecov/codecov-action@v5

.github/workflows/flex-templates.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Build flex templates
22

33
on:
44
workflow_dispatch: ~
5-
push:
6-
branches:
7-
- main
5+
# push:
6+
# branches:
7+
# - main
88

99
jobs:
1010
assembly:

.github/workflows/tf-apply.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Terraform apply
22

33
on:
44
workflow_dispatch: ~
5-
push:
6-
branches:
7-
- main
5+
# push:
6+
# branches:
7+
# - main
88

99
permissions:
1010
contents: read

.github/workflows/tf-plan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Terraform plan
22

33
on:
44
workflow_dispatch: ~
5-
pull_request: ~
5+
# pull_request: ~
66

77
permissions:
88
contents: read

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import sbt._
33
import Dependencies._
44
import Settings._
55

6-
addCommandAlias("check", "clean; scalafixAll; scalafmtAll; scapegoat; testOnly -- -l org.scalatest.tags.Slow")
6+
addCommandAlias("check", "clean; scalafixAll; scalafmtAll; scapegoat; test")
77

88
lazy val root = (project in file("."))
99
.settings(

project/Settings.scala

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ object Settings {
4040
updateOptions := updateOptions.value.withCachedResolution(true),
4141
// required by beam-runners-google-cloud-dataflow-java
4242
resolvers += "confluent" at "https://packages.confluent.io/maven/",
43+
// disable integration tests by default
44+
Test / testOptions += Tests.Argument("-l", "org.scalatest.tags.Slow"),
4345
// use jcl-over-slf4j bridge instead of common-logging
4446
excludeDependencies += "commons-logging" % "commons-logging",
4547
// pin jackson

0 commit comments

Comments
 (0)