Satisfiability Assertions (#263) #852
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: Continuous Integration | |
on: | |
pull_request: ~ | |
push: | |
branches: | |
- main | |
- dev | |
jobs: | |
forge-tests: | |
runs-on: ubuntu-latest | |
container: docker://racket/racket:8.3 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Setup Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: '11' | |
- name: Install Forge | |
run: | | |
raco pkg install --auto --no-docs ./forge ./froglet | |
- name: Run tests | |
run: | | |
cd forge/ | |
chmod +x run-tests.sh | |
./run-tests.sh tests/ |