#18 Update to SpinalHDL 1.10.2a and Scala 2.12.18 #6
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
# This workflow compiles the project and runs all tests. | |
name: SpinalCrypto Tests | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
branches: | |
- 'master' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Compile | |
run: | | |
sbt compile | |
- name: Install verilator | |
run: | | |
sudo apt install -y verilator | |
- name: Run tests | |
run: | | |
sbt test |