From 6e52409fa91a8db2b24d267348aece05dac845b0 Mon Sep 17 00:00:00 2001 From: vladkuzhyr Date: Wed, 26 Jun 2024 21:57:57 +0300 Subject: [PATCH] fix indents in github-actions --- .github/workflows/github-actions.yml | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index e82c5ff..28d60e0 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -1,27 +1,26 @@ name: Build project + on: push: branches: - master pull_request: branches: - - * -jobs: + - '*' +jobs: Explore-GitHub-Actions: runs-on: ubuntu-latest steps: - - - uses: actions/checkout@v4 - - - name: Set up JDK 17 for x64 - uses: actions/setup-java@v4 - with: - java-version: '17' - distribution: 'corretto' - architecture: x64 + - name: Checkout repository + uses: actions/checkout@v4 + - name: Set up JDK 17 for x64 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'corretto' + architecture: 'x64' - - name: Build & Test - run: - mvn -B clean package \ No newline at end of file + - name: Build & Test + run: mvn -B clean package