Fix scalar exp encoding #12
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: 'verify PR' | |
on: pull_request | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
if: github.repository == 'agrestio/agrest' | |
name: JDK ${{ matrix.java }} | |
strategy: | |
matrix: | |
java: [ "11", "17", "21" ] | |
fail-fast: true | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
- name: Build and test... | |
run: mvn clean verify |