# HG changeset patch # User MitchellWeg <mitchell.w@live.nl> # Date 1610369484 -3600 # Node ID 88a42e950f1cc8139c713f5400743a462a11b1c3 # Parent d77b6a3b3eaf2400f9d68daf904145b63c722533 add osx ci diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,24 @@ +# This workflow will build a Java project with Maven +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven + +name: MacOS + +on: [push] + +jobs: + build: + + runs-on: macos-10.15 + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + + - name: Install Ant + run: brew install ant + + - name: Build + run: make all