2022-06-20 17:37:41 +00:00
|
|
|
# This file was automatically generated by sbt-github-actions using the
|
|
|
|
# githubWorkflowGenerate task. You should add and commit this file to
|
|
|
|
# your git repository. It goes without saying that you shouldn't edit
|
|
|
|
# this file by hand! Instead, if you wish to make changes, you should
|
|
|
|
# change your sbt build configuration to revise the workflow description
|
|
|
|
# to meet your needs, then regenerate this file.
|
|
|
|
|
|
|
|
name: Continuous Integration
|
2021-04-05 16:16:41 +00:00
|
|
|
|
|
|
|
on:
|
2022-06-20 17:37:41 +00:00
|
|
|
pull_request:
|
|
|
|
branches: ['**']
|
2021-04-05 16:16:41 +00:00
|
|
|
push:
|
2022-06-20 17:37:41 +00:00
|
|
|
branches: ['**']
|
2021-04-05 16:16:41 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2022-06-20 17:37:41 +00:00
|
|
|
name: Build and Test
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest]
|
2022-09-07 14:39:54 +00:00
|
|
|
scala: [3.2.0]
|
2022-06-20 17:37:41 +00:00
|
|
|
java: [temurin@11]
|
|
|
|
runs-on: ${{ matrix.os }}
|
2021-04-05 16:16:41 +00:00
|
|
|
steps:
|
2022-06-20 17:37:41 +00:00
|
|
|
- name: Checkout current branch (full)
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Setup Java (temurin@11)
|
|
|
|
if: matrix.java == 'temurin@11'
|
|
|
|
uses: actions/setup-java@v2
|
|
|
|
with:
|
|
|
|
distribution: temurin
|
|
|
|
java-version: 11
|
2021-04-05 16:16:41 +00:00
|
|
|
|
2022-06-20 17:37:41 +00:00
|
|
|
- name: Cache sbt
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.sbt
|
|
|
|
~/.ivy2/cache
|
|
|
|
~/.coursier/cache/v1
|
|
|
|
~/.cache/coursier/v1
|
|
|
|
~/AppData/Local/Coursier/Cache/v1
|
|
|
|
~/Library/Caches/Coursier/v1
|
|
|
|
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
|
2021-04-05 16:21:06 +00:00
|
|
|
|
2022-06-20 17:37:41 +00:00
|
|
|
- name: Check that workflows are up to date
|
|
|
|
run: sbt ++${{ matrix.scala }} githubWorkflowCheck
|
2021-04-05 16:21:06 +00:00
|
|
|
|
2022-06-20 17:37:41 +00:00
|
|
|
- run: sbt ++${{ matrix.scala }} scalafmtCheck test
|