Skip to content
This repository has been archived by the owner on Jun 16, 2024. It is now read-only.

workflows: sbt was removed. :/ try this. #81

workflows: sbt was removed. :/ try this.

workflows: sbt was removed. :/ try this. #81

Workflow file for this run

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 and Verilator
run: sudo apt-get install -y sbt verilator
- name: Run tests
run: sbt test