Skip to content

Offer peeking beyond the top of the stack #208

Offer peeking beyond the top of the stack

Offer peeking beyond the top of the stack #208

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
checks: write
pull-requests: write
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
# os: [ubuntu-latest, windows-latest, macos-latest]
java-version: [8]
runs-on: ${{ matrix.os }}
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup Java JDK
uses: actions/setup-java@v2.5.0
with:
distribution: adopt-hotspot
java-version: ${{ matrix.java-version }}
- run: ./gradlew --info build