Skip to content

Commit

Permalink
Tweak CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dwijnand committed Aug 20, 2021
1 parent 1d8d646 commit 34012a9
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: ci

on:
pull_request:
push:
branches: ['main']
tags: ['v[0-9]']
tags: ['[0-9]']

jobs:
build:
Expand All @@ -17,7 +19,7 @@ jobs:
with:
java-version: ${{ matrix.java }}
- uses: coursier/cache-action@v6
- run: "sbt test mimaReportBinaryIssues 'set sbtplugin/scriptedSbt := \"1.2.8\"' 'scripted sbt-mima-plugin/minimal' IntegrationTest/test"
- run: "sbt test mimaReportBinaryIssues 'set sbtplugin/scriptedSbt := \"1.2.8\"' 'scripted sbt-mima-plugin/minimal'"
testFunctional:
needs: build
strategy:
Expand All @@ -42,3 +44,11 @@ jobs:
- uses: olafurpg/setup-scala@v13
- uses: coursier/cache-action@v6
- run: sbt "scripted sbt-mima-plugin/*${{ matrix.scripted }}"
testIntegration:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: olafurpg/setup-scala@v13
- uses: coursier/cache-action@v6
- run: sbt IntegrationTest/test

0 comments on commit 34012a9

Please sign in to comment.