first commit #1
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: approx CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
name: Unit Tests | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Verilator | |
run: sudo apt-get install -y verilator | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Compile | |
run: sbt compile | |
- name: Run tests | |
run: sbt test |