Skip to content

Commit

Permalink
Merge pull request #62 from scala-steward/update/sbt-github-actions-0…
Browse files Browse the repository at this point in the history
….11.0

Update sbt-github-actions to 0.11.0
  • Loading branch information
sh0hei authored May 24, 2021
2 parents 3b98357 + a50498b commit 5be368b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ name: Continuous Integration

on:
pull_request:
branches: ['*']
branches: ['**']
push:
branches: ['*']
branches: ['**']
tags: [v*]

env:
Expand Down Expand Up @@ -50,16 +50,16 @@ jobs:
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}

- name: Check binary compatibility
run: sbt ++${{ matrix.scala }} mimaReportBinaryIssues
run: sbt --client '++${{ matrix.scala }}; mimaReportBinaryIssues'

- name: Check formatting
run: sbt ++${{ matrix.scala }} scalafmtCheckAll
run: sbt --client '++${{ matrix.scala }}; scalafmtCheckAll'

- name: Check that workflows are up to date
run: sbt ++${{ matrix.scala }} githubWorkflowCheck
run: sbt --client '++${{ matrix.scala }}; githubWorkflowCheck'

- name: Build project
run: sbt ++${{ matrix.scala }} test
run: sbt --client '++${{ matrix.scala }}; test'

- name: Compress target directories
run: tar cf targets.tar target project/target
Expand Down Expand Up @@ -128,4 +128,4 @@ jobs:
PGP_SECRET: ${{ secrets.PGP_SECRET }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
run: sbt ++${{ matrix.scala }} ci-release
run: sbt --client '++${{ matrix.scala }}; ci-release'
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.9.1")
addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.10.1")
addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.11.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.2")

0 comments on commit 5be368b

Please sign in to comment.