mirror of
https://github.com/actions/checkout.git
synced 2025-03-14 04:14:10 +00:00
ant.yml
Signed-off-by: GreggJEduardoPH <greggjeduardoph@gmail.com>
This commit is contained in:
parent
560f5aca73
commit
13c3928247
25
.github/workflows/ant.yml
vendored
Normal file
25
.github/workflows/ant.yml
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
# This workflow will build a Java project with Ant
|
||||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-ant
|
||||
|
||||
name: Java CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
branches: [ "main" ]
|
||||
|
||||
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
|
Loading…
x
Reference in New Issue
Block a user