Update unfiltered to 0.12.0 to avoid Scala XML 1.3 (#217) #80
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- release-* | |
tags-ignore: ["v*"] | |
permissions: | |
contents: read | |
jobs: | |
test: | |
name: Build and Test | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- { sbtCrossVersion: "1.9.7", jvmName: "temurin:1.11.0" } | |
# { jvmName: "temurin:1.11.0" } | |
# { jvmName: "temurin:1.17.0" } | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Cache Coursier cache | |
uses: coursier/[email protected] | |
# - name: Install Node | |
# uses: actions/setup-node@v1 | |
# with: | |
# node-version: v16.x | |
- name: Ruby caches | |
uses: actions/cache@v3 | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- name: Set up JDK ${{ matrix.jvmName }} | |
uses: coursier/[email protected] | |
with: | |
jvm: ${{ matrix.jvmName }} | |
- name: Install Jekyll, Nanoc, Asciidoctor, sphinx | |
run: |- | |
sudo gem install jekyll:3.8.4 nanoc:4.0.2 asciidoctor --no-document | |
pip3 install --user sphinx | |
# npm install -g [email protected] | |
# gitbook install 3.2.3 | |
# - name: Install Hugo 0.20 | |
# run: |- | |
# mkdir download | |
# wget https://github.com/gohugoio/hugo/releases/download/v0.20.1/hugo_0.20.1_linux-64bit.tar.gz -O download/hugo.tgz | |
# tar xvf download/hugo.tgz | |
# mkdir ${PWD}/bin | |
# export PATH=${PATH}:${PWD}/bin | |
# mv hugo_0.20.1_linux_amd64/hugo_0.20.1_linux_amd64 ${PWD}/bin/hugo | |
# chmod +x ${PWD}/bin/hugo | |
- name: sbt runScriptedTest | |
run: sbt ";^^${{ matrix.sbtCrossVersion }}; test; scripted; makeSite" |