add warning message for sanitized slice filename collision #1264
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Build, Lint, and Test" | |
on: | |
- push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: "Set up JDK 20.0.1" | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '20.0.1' | |
distribution: 'temurin' | |
- name: "Test with Gradle" | |
run: ./gradlew check |