Skip to content

Java Unit Test

Java Unit Test #1753

Workflow file for this run

# Subzero java unit tests
name: "Java Unit Test"
on:
push:
branches: [master]
pull_request:
# The branches below must be a subset of the branches above
branches: [master]
schedule:
# Daily at 1am
- cron: '0 1 * * *'
jobs:
java-unit-test:
name: "Java Unit Test"
runs-on: ubuntu-latest
defaults:
run:
shell: bash -euxo pipefail {0}
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2
submodules: 'recursive'
- name: Init Hermit
uses: cashapp/activate-hermit@v1
# Unit tests for Java
- name: Run Unit tests
run: |
cd ${{ github.workspace }}/java
gradle test --info