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.
27 lines
629 B
YAML
27 lines
629 B
YAML
name: Check & Test latest parsers
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
check-and-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: Set up Gradle 📦
|
|
uses: gradle/actions/setup-gradle@v4
|
|
with:
|
|
cache-read-only: true
|
|
|
|
- name: Compile parsers 🚀
|
|
run: ./gradlew compileKotlin |