Skip to content

Update sbt to 1.9.9 #105

Update sbt to 1.9.9

Update sbt to 1.9.9 #105

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
env:
CURRENT_VERSION: "3.6.0"
JAVA_OPTS: "-Xmx6G"
SBT_OPTS: "-Dsbt.ci=true"
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.8.0
with:
access_token: ${{ github.token }}
- name: Checkout gatling/gatling
uses: actions/checkout@v2
with:
repository: gatling/gatling
ref: main
path: gatling
- name: Checkout gatling/gatling-highcharts
uses: actions/checkout@v2
with:
path: gatling-highcharts
- name: Setup JDK
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '21'
- name: Cache SBT
uses: actions/cache@v2
with:
path: |
~/.m2/repository
~/.ivy2/cache
~/.cache/coursier
~/.sbt/launchers
~/.sbt/boot
~/.sbt/preloaded
key: ${{ runner.os }}-sbt-${{ hashFiles('**/build.sbt', '**/plugins.sbt', '**/build.properties') }}
- name: Publish gatling locally
working-directory: gatling
run: |
sbt -Dproject.version="$CURRENT_VERSION" publishLocal
- name: Test
working-directory: gatling-highcharts
run: |
sbt \
-Dproject.version="$CURRENT_VERSION" \
"all headerCheck" \
"all scalafmtSbtCheck" \
"all scalafmtCheckAll" \
"all scalafixAll --check" \
"test"