Add useReused hook as a monadic way of accessing CustomHook.reusableDeps #391
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: | |
paths: | |
- 'bin/**' | |
- 'downstream-tests/**' | |
- 'library/**' | |
tags-ignore: | |
- v*.*.* | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- java: 18.0.1 | |
scala: 2 | |
- java: 11.0.15 | |
scala: 3 | |
name: Scala v${{ matrix.scala }} / Java v${{ matrix.java }} | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Scala | |
uses: japgolly/[email protected] | |
with: | |
java-version: adoptium@1.${{ matrix.java }} | |
- name: Build and test | |
shell: bash | |
run: bin/ci ${{ matrix.scala }} |