Files
atrium/.github/workflows/check-generated-committed.yml
Robert Stoll 6be692684e create PR with generated README examples on master if necessary
moreover:
- indent yml with 2 spaces and format them
- cleanup codecov ignore rules, remove deleted projects
2020-12-25 01:16:24 +01:00

28 lines
608 B
YAML

name: Check Generated
on:
push:
paths:
- 'logic/**/main/**/*Assertions.kt'
pull_request:
paths:
- 'logic/**/main/**/*Assertions.kt'
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: true
matrix:
java_version: [ 11 ]
steps:
- uses: actions/checkout@v2
- name: "Set up JDK ${{ matrix.java_version }}"
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java_version }}
- name: check generateLogic committed
run: ./gradle/scripts/check-generateLogic-committed.sh
shell: bash