This repository has been archived by the owner on Sep 7, 2024. It is now read-only.
Validation process #233
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: Validation process | |
on: | |
push: | |
branches: | |
- renovate/** | |
pull_request: | |
merge_group: | |
jobs: | |
test: | |
name: Test suite | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
couchdb_version: ['2.3.1'] | |
fail-fast: false | |
steps: | |
- name: Get Ivy2 cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.ivy2 | |
key: ivy2-files | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: olafurpg/setup-scala@v14 | |
- name: Setup CouchDB | |
uses: "cobot/couchdb-action@master" | |
with: | |
couchdb version: ${{ matrix.couchdb_version }} | |
- name: SBT tests and artifacts | |
run: sbt test |