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.
23 lines
518 B
YAML
23 lines
518 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'
|
|
cache: 'gradle'
|
|
|
|
- name: Compile parsers 🚀
|
|
run: ./gradlew compileKotlin |