mirror of
https://github.com/jlengrand/atrium.git
synced 2026-03-10 08:01:19 +00:00
24 lines
481 B
YAML
24 lines
481 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
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: "Set up JDK 11"
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 11
|
|
|
|
- name: check generateLogic committed
|
|
run: ./gradle/scripts/check-generateLogic-committed.sh
|
|
shell: bash
|