From 6d40ca15bca4167b18ba283d422d0f02af704786 Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Sat, 21 Jan 2023 13:39:30 +0100 Subject: [PATCH] github action --- .github/workflows/all-ci.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/all-ci.yml diff --git a/.github/workflows/all-ci.yml b/.github/workflows/all-ci.yml new file mode 100644 index 000000000..72cca24bf --- /dev/null +++ b/.github/workflows/all-ci.yml @@ -0,0 +1,24 @@ +name: Build and Test the Prog8 compiler + +on: + push: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up JDK + uses: actions/setup-java@v2 + with: + java-version: 11 + + - name: Build and test with Gradle + run: ./gradlew build + + - name: Run installDist and installShadowDist tasks + run: ./gradlew installDist installShadowDist