Mercurial > hg > monetdb-java
diff .github/workflows/macos.yml @ 410:88a42e950f1c
add osx ci
author | MitchellWeg <mitchell.w@live.nl> |
---|---|
date | Mon, 11 Jan 2021 13:51:24 +0100 (2021-01-11) |
parents | |
children | 2c1bda502efa |
line wrap: on
line diff
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