This repository has been archived by the owner on Jun 16, 2024. It is now read-only.
SB_HFOSC support. #157
Workflow file for this run
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: Unit tests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 22 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '22' | |
distribution: 'temurin' | |
cache: 'sbt' | |
- name: Install sbt | |
run: | | |
wget https://github.com/sbt/sbt/releases/download/v1.9.8/sbt-1.9.8.tgz | |
tar xf sbt-1.9.8.tgz | |
echo "$PWD/sbt/bin" >> $GITHUB_PATH | |
- name: Install Verilator | |
run: sudo apt-get install -y verilator | |
- name: Run tests | |
run: sbt test |