Skip to content

fix: Fix type of Items entries field (box/box-codegen#660) (#213) #15

fix: Fix type of Items entries field (box/box-codegen#660) (#213)

fix: Fix type of Items entries field (box/box-codegen#660) (#213) #15

Workflow file for this run

name: build
on:
pull_request:
types: [opened, synchronize]
push:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
distribution: ['zulu', 'temurin']
java: ['8', '11', '17']
name: Java ${{ matrix.java }} (${{ matrix.distribution }})
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: ${{ matrix.distribution }}
java-version: ${{ matrix.java }}
cache: 'gradle'
- name: Build and test
run: ./gradlew check --stacktrace