Skip to content

Commit

Permalink
Merge branch 'master' of github.com:unclebob/CC_SMC
Browse files Browse the repository at this point in the history
  • Loading branch information
unclebob committed Jun 22, 2024
2 parents a9edab1 + b63b8d5 commit 9cb113b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ant.yml
Original file line number Diff line number Diff line change
@@ -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: [ "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: Build with Ant
run: ant -noinput -buildfile build.xml

0 comments on commit 9cb113b

Please sign in to comment.