Fix little bug in ZedBoard wrapper and let user set tidbits root #51
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: [push, pull_request] | |
jobs: | |
ci: | |
name: ci | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Scala | |
uses: olafurpg/setup-scala@v10 | |
with: | |
java-version: adopt@1.8 | |
- name: Install verilator | |
run: sudo apt-get update && sudo apt-get install verilator -y | |
- name: Cache Scala | |
uses: coursier/cache-action@v5 | |
- name: Run tests | |
run: make test |