Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mmontuori/jportforwarder
Browse files Browse the repository at this point in the history
  • Loading branch information
mmontuori committed Jun 12, 2024
2 parents 361a2d2 + de98578 commit cbab9ba
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ant.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# 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@v4
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: create lib directory
run: mkdir lib
- name: Build with Ant
run: ant -noinput -buildfile build.xml

0 comments on commit cbab9ba

Please sign in to comment.