Have dominion autoload use both names and codes #1275
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 |