chore: bump flix-json
version
#138
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 on Latest Release | |
# Controls when the workflow will run | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build-latest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/[email protected] | |
with: | |
java-version: 21 | |
distribution: zulu | |
- run: | | |
# download Flix JAR | |
curl -L https://github.com/flix/flix/releases/latest/download/flix.jar > flix.jar | |
# run tests | |
java -jar flix.jar test --github-token ${{ github.token }} |