Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,5 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- uses: google-github-actions/auth@v2
with:
credentials_json: "${{ secrets.GOOGLE_CREDENTIALS }}"
- run: sbt jacoco
- uses: codecov/codecov-action@v5
6 changes: 3 additions & 3 deletions .github/workflows/flex-templates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build flex templates

on:
workflow_dispatch: ~
push:
branches:
- main
# push:
# branches:
# - main

jobs:
assembly:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tf-apply.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Terraform apply

on:
workflow_dispatch: ~
push:
branches:
- main
# push:
# branches:
# - main

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tf-plan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Terraform plan

on:
workflow_dispatch: ~
pull_request: ~
# pull_request: ~

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import sbt._
import Dependencies._
import Settings._

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

lazy val root = (project in file("."))
.settings(
Expand Down
2 changes: 2 additions & 0 deletions project/Settings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ object Settings {
updateOptions := updateOptions.value.withCachedResolution(true),
// required by beam-runners-google-cloud-dataflow-java
resolvers += "confluent" at "https://packages.confluent.io/maven/",
// disable integration tests by default
Test / testOptions += Tests.Argument("-l", "org.scalatest.tags.Slow"),
// use jcl-over-slf4j bridge instead of common-logging
excludeDependencies += "commons-logging" % "commons-logging",
// pin jackson
Expand Down
Loading