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