Skip to content

Commit

Permalink
chore: 🤖 Restore version policy check (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaeljw authored Apr 11, 2022
1 parent 7fd1a2a commit fdb1308
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,33 +43,33 @@ jobs:
- name: Run tests
run: sbt +compile +test

# versionpolicycheck:
# name: Version policy check
# strategy:
# fail-fast: false
# matrix:
# os: [ ubuntu-latest ]
# java:
# - 11
# runs-on: ${{ matrix.os }}
# steps:
versionpolicycheck:
name: Version policy check
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
java:
- 11
runs-on: ${{ matrix.os }}
steps:

# - uses: actions/checkout@v3
- uses: actions/checkout@v3

# - name: Cache sbt
# uses: actions/cache@v2
# with:
# path: |
# ~/.sbt
# ~/.ivy2/cache
# ~/.cache/coursier
# key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
- name: Cache sbt
uses: actions/cache@v2
with:
path: |
~/.sbt
~/.ivy2/cache
~/.cache/coursier
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}

# - name: Set up JDK
# uses: actions/setup-java@v2
# with:
# java-version: ${{ matrix.java }}
# distribution: 'adopt'
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: 'adopt'

# - name: Version check
# run: sbt "project cucumberScala" versionPolicyCheck
- name: Version check
run: sbt "project cucumberScala" versionPolicyCheck

0 comments on commit fdb1308

Please sign in to comment.