Skip to content

Commit

Permalink
maintenance: workflow scala version
Browse files Browse the repository at this point in the history
  • Loading branch information
girdharshubham committed Jan 14, 2022
1 parent fa47791 commit 4d35c02
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.6]
scala: [2.13.7]
java: [temurin@11]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
strategy:
matrix:
os: [centos]
scala: [2.13.6]
scala: [2.13.7]
java: [temurin@11]
runs-on: [ "${{ matrix.os }}", zio-http ]
steps:
Expand Down
2 changes: 2 additions & 0 deletions project/BenchmarkWorkFlow.scala
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import BuildHelper.Scala213
import sbtghactions.GenerativePlugin.autoImport.{UseRef, WorkflowJob, WorkflowStep}

object BenchmarkWorkFlow {
Expand All @@ -10,6 +11,7 @@ object BenchmarkWorkFlow {
cond = Some(
"${{ github.event_name == 'pull_request'}}",
),
scalas = List(Scala213),
steps = List(
WorkflowStep.Run(
env = Map("GITHUB_TOKEN" -> "${{secrets.ACTIONS_PAT}}"),
Expand Down
4 changes: 3 additions & 1 deletion project/ScoverageWorkFlow.scala
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import BuildHelper.{Scala213, ScoverageVersion}
import sbtghactions.GenerativePlugin.autoImport.{WorkflowJob, WorkflowStep}
import BuildHelper.{ScoverageVersion, Scala213}

object ScoverageWorkFlow {
// TODO move plugins to plugins.sbt after scoverage's support for Scala 3
val scoveragePlugin = s"""addSbtPlugin("org.scoverage" % "sbt-scoverage" % "${ScoverageVersion}")"""
Expand All @@ -12,6 +13,7 @@ object ScoverageWorkFlow {
WorkflowJob(
id = "unsafeRunScoverage",
name = "Unsafe Scoverage",
scalas = List(Scala213),
steps = List(
WorkflowStep.CheckoutFull,
WorkflowStep.Run(
Expand Down

1 comment on commit 4d35c02

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚀 Performance Benchmark:

Concurrency: 256
Requests/sec: 826795.86

Please sign in to comment.