1d9d6d7fb0
* update actions * address merge conflicts * fix java updates * update github script * update cache to v3 Co-authored-by: Bishal Prasad <bishal-pdmsft@github.com>
26 lines
579 B
YAML
26 lines
579 B
YAML
# This workflow will build a Java project with Ant
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-ant
|
|
|
|
name: Java CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ $default-branch ]
|
|
pull_request:
|
|
branches: [ $default-branch ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up JDK 11
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
java-version: '11'
|
|
distribution: 'temurin'
|
|
- name: Build with Ant
|
|
run: ant -noinput -buildfile build.xml
|