You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
476 B
YAML
26 lines
476 B
YAML
name: Check & Test latest parsers
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository 🌏
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up enviroment 🔧
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
java-version: '17'
|
|
distribution: 'temurin'
|
|
|
|
- name: Compile latest parsers 🚀
|
|
run: |
|
|
chmod +x ./gradlew
|
|
./gradlew compileKotlin
|