diff --git a/.github/workflows/test-branch.yml b/.github/workflows/test-branch.yml index 31aa0eb3..490da74d 100644 --- a/.github/workflows/test-branch.yml +++ b/.github/workflows/test-branch.yml @@ -6,17 +6,18 @@ on: - master jobs: - build: - runs-on: ubuntu-latest + check-and-build: + runs-on: ubuntu-latest + steps: + - name: Checkout repository 🌏 + uses: actions/checkout@v4 - steps: - - name: Checkout + Set-up enviroment 🌏 - uses: actions/checkout@v4 - uses: actions/setup-java@v4 - with: - java-version: '17' - distribution: 'temurin' - cache: 'gradle' + - name: Set up enviroment 🔧 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + cache: 'gradle' - - name: Compile parsers 🚀 - run: ./gradlew compileKotlin \ No newline at end of file + - name: Compile parsers 🚀 + run: ./gradlew compileKotlin \ No newline at end of file diff --git a/.github/workflows/test-parsers.yml b/.github/workflows/test-parsers.yml index 236aa5d7..66c5317b 100644 --- a/.github/workflows/test-parsers.yml +++ b/.github/workflows/test-parsers.yml @@ -13,13 +13,15 @@ jobs: build-and-test: runs-on: ubuntu-latest steps: - - name: Checkout + Set-up enviroment 🌏 - uses: actions/checkout@v3 - uses: actions/setup-java@v3 + - 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 assemble \ No newline at end of file + run: ./gradlew compileKotlin \ No newline at end of file