Skip to content

create github-actions.yml #1

create github-actions.yml

create github-actions.yml #1

Workflow file for this run

name: Build project
on:
push:
branches:
- master
pull_request:
branches:
- *

Check failure on line 8 in .github/workflows/github-actions.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/github-actions.yml

Invalid workflow file

You have an error in your yaml syntax on line 8
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: Build & Test
run:
mvn -B clean package