31 lines
655 B
YAML
31 lines
655 B
YAML
---
|
|
name: Java with Ant
|
|
description: Build and test a Java project with Apache Ant.
|
|
categories: [Ant, Java]
|
|
iconName: ant
|
|
---
|
|
# 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: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up JDK 1.8
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 1.8
|
|
- name: Build with Ant
|
|
run: ant -noinput -buildfile build.xml
|