Rename Thrown
file to Unchecked
and export it to Soundness
#115
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: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Setup Java 19 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '19' | |
- name: Get Wrath | |
uses: actions/checkout@v3 | |
with: | |
repository: 'propensive/wrath' | |
path: 'wrath' | |
ref: '0.6.1' | |
- name: Build | |
run: "wrath/wrath -F -x" |