Add isOpenAt support for date ranges #63
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: "Continuous Integration" | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
name: Compile project and run tests (Java ${{ matrix.java }}) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: | |
- 11 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Java ${{ matrix.java }} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Fetch cached Maven dependencies | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2 | |
key: maven-deps | |
- name: Compile project, run tests | |
run: | | |
./gradlew test jar |