Mercurial > hg > monetdb-java
changeset 409:d77b6a3b3eaf
Create linux.yml
author | Mitchell Weg <mitchell.w@live.nl> |
---|---|
date | Mon, 11 Jan 2021 13:34:00 +0100 (2021-01-11) |
parents | f523727db392 |
children | 88a42e950f1c |
files | .github/workflows/linux.yml |
diffstat | 1 files changed, 24 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
new file mode 100644 --- /dev/null +++ b/.github/workflows/linux.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: Linux + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + 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: sudo apt install -y ant + + - name: Build + run: make all