2020-12-14 06:37:09 -06:00
|
|
|
name: Docs
|
|
|
|
env:
|
|
|
|
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Compile-Website:
|
|
|
|
runs-on: ubuntu-latest
|
2021-04-18 09:02:49 -05:00
|
|
|
timeout-minutes: 60
|
2020-12-14 06:37:09 -06:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
2021-03-07 14:57:45 -06:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2020-12-14 06:37:09 -06:00
|
|
|
- name: Setup Scala
|
|
|
|
uses: olafurpg/setup-scala@v10
|
2021-04-28 16:21:09 -05:00
|
|
|
with:
|
|
|
|
java-version: zulu@1.11
|
2020-12-14 06:37:09 -06:00
|
|
|
- name: Cache
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.ivy2/cache
|
|
|
|
~/.sbt
|
|
|
|
~/.bitcoin-s/binaries
|
|
|
|
key: ${{ runner.os }}-cache
|
|
|
|
- name: Compile website
|
2021-06-07 12:01:08 -05:00
|
|
|
run: sbt ++2.13.6 docs/mdoc
|