mirror of
https://github.com/irmen/prog8.git
synced 2025-02-16 07:31:48 +00:00
github action
This commit is contained in:
parent
32c1c19224
commit
6d40ca15bc
24
.github/workflows/all-ci.yml
vendored
Normal file
24
.github/workflows/all-ci.yml
vendored
Normal file
@ -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
|
Loading…
x
Reference in New Issue
Block a user