Skip to content

Send whitespace and comments to hidden channel #15

Send whitespace and comments to hidden channel

Send whitespace and comments to hidden channel #15

Workflow file for this run

name: test
on:
push:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
- name: Cache Maven packages
uses: actions/cache@v1
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Test
run: mvn test --batch-mode --no-transfer-progress