Skip to content

NGR validatie

NGR validatie #1587

Workflow file for this run

name: NGR validatie
on:
# Trigger the workflow on push or pull request,
# but only for the master branch
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: "45 04 * * *"
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- name: Set up JDK 13
uses: actions/setup-java@v1
with:
java-version: 13
- name: Build with Maven runall
run: mvn clean --file pom.xml test
- name: Deploy 1
uses: peaceiris/actions-gh-pages@v3
if: always()
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./output
- name: remove large unused xml files
run: rm `find ./target/surefire-reports -name '*.xml' ` -rf
if: always()
- name: Deploy 2
uses: peaceiris/actions-gh-pages@v3
if: always()
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/surefire-reports
keep_files: true