change naming of a test to match others #79
This file contains hidden or 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: compile | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Install Java | |
| uses: actions/setup-java@v2 | |
| with: | |
| distribution: 'adopt' | |
| java-version: '25' | |
| - name: Install Erlang | |
| uses: erlef/setup-beam@v1 | |
| with: | |
| # version is used for download URL (see https://github.com/gleam-lang/setup-erlang/blob/main/main.sh) | |
| # Available versions: see https://www.erlang-solutions.com/downloads/ | |
| otp-version: '26.x' | |
| - name: Build abstools | |
| uses: eskatos/gradle-command-action@v1 | |
| env: | |
| LANG: en_US.UTF-8 | |
| with: | |
| arguments: build -x check -x test |