Skip to content

Update blank.yml

Update blank.yml #169

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
self-hosted-container:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11' ]
steps:
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
- name: compile
run: |
which java
find $JAVA_HOME |xargs ls -la