Skip to content

Add the license header #37

Add the license header

Add the license header #37

Workflow file for this run

name: CI/CD
on:
push:
branches:
- *

Check failure on line 6 in .github/workflows/build.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yaml

Invalid workflow file

You have an error in your yaml syntax on line 6
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Check License
run: mvn license:check
- name: Build
run: mvn clean package -B
- name: Create JAR
run: mvn jar:jar