Skip to content

fix W14 & W6 conflicts, use odd and even num to avoid W14 insert depe… #16

fix W14 & W6 conflicts, use odd and even num to avoid W14 insert depe…

fix W14 & W6 conflicts, use odd and even num to avoid W14 insert depe… #16

Workflow file for this run

# 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: [ "master" ]
pull_request:
branches: [ "master" ]
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: Initialize the build system or project
run: ant bootstrap
- name: Resolve project dependencies
run: ant resolve
- name: Build with Ant
run: ant build