fix: make cinnamon actually compatible with the current akka version #31
Workflow file for this run
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: Link Validator | |
on: | |
pull_request: | |
schedule: | |
- cron: '0 6 * * 1' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
validate-links: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3.1.0 | |
- name: Cache Coursier cache | |
uses: coursier/cache-action@v6.4.1 | |
- name: Set up JDK 11 | |
uses: coursier/setup-action@v1.3.0 | |
with: | |
jvm: temurin:1.17.0.5 | |
apps: cs | |
- name: sbt site | |
run: sbt docs/makeSite | |
- name: Run Link Validator | |
run: cs launch net.runne::site-link-validator:0.2.3 -- .github/link-validator.conf |