# HG changeset patch # User Mitchell Weg <mitchell.w@live.nl> # Date 1610368440 -3600 # Node ID d77b6a3b3eaf2400f9d68daf904145b63c722533 # Parent f523727db39279af27eb1beadde739e0703b6e34 Create linux.yml diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml 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