prog8/.github/workflows/all-ci.yml

26 lines
507 B
YAML
Raw Normal View History

2023-01-21 12:39:30 +00:00
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
2023-01-21 12:47:09 +00:00
distribution: adopt
2023-01-21 12:39:30 +00:00
- name: Build and test with Gradle
run: ./gradlew build
- name: Run installDist and installShadowDist tasks
run: ./gradlew installDist installShadowDist