Exclude commons-lang3 lib from Cassandra dependency in ScalarDB and ScalarDL tests #86
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: Build and Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Install leiningen | |
uses: DeLaGuardo/[email protected] | |
with: | |
lein: latest | |
- name: Cache m2 repository | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/project.clj') }} | |
restore-keys: | | |
${{ runner.os }}-m2- | |
- name: Install dependencies | |
run: | | |
cd cassandra | |
lein install | |
- name: Run test for Cassandra | |
run: | | |
cd cassandra | |
lein cloverage | |
- name: Run test for ScalarDB | |
run: | | |
cd scalardb | |
lein cloverage | |
- name: Run test for ScalarDL | |
run: | | |
cd scalardl | |
lein cloverage |