Skip to content

docs: add yaml config examples #67

docs: add yaml config examples

docs: add yaml config examples #67

Workflow file for this run

name: tests
on:
push:
branches: ["main"]
pull_request:
branches: ["*"]
jobs:
checkstyle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: "11"
distribution: "temurin"
cache: maven
- name: run checkstyle
run: mvn checkstyle:check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: "11"
distribution: "temurin"
cache: maven
- name: run junit tests
run: mvn clean test