docker: add vcd-to-csv #1154
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
# Copyright 2023 KU Leuven. | |
# Licensed under the Apache License, Version 2.0, see LICENSE for details. | |
# SPDX-License-Identifier: Apache-2.0 | |
# | |
# Xiaoling Yi <[email protected]> | |
# Run Scala Unit Test | |
name: Run Scala Unit Test | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
jobs: | |
run: | |
name: Build and Test | |
runs-on: ubuntu-22.04 | |
container: | |
image: ghcr.io/kuleuven-micas/snax:main | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run the unit tests | |
working-directory: hw/chisel | |
run: | | |
mill Snax.test |