Skip to content

Commit

Permalink
fix indents in github-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
XD-cods committed Jun 26, 2024
1 parent 3978e8b commit 6e52409
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
@@ -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
- name: Build & Test
run: mvn -B clean package

0 comments on commit 6e52409

Please sign in to comment.