Added fixed point Finite Impulse Response filter. #60
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: Chisel IP Contribution Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Tabby OSS Cad Suite (from YosysHQ) | |
uses: YosysHQ/setup-oss-cad-suite@v1 | |
with: | |
osscadsuite-version: '2021-11-09' | |
- name: Setup Scala | |
uses: olafurpg/setup-scala@v11 | |
with: | |
java-version: openjdk@1.11 | |
- name: Compile | |
run: sbt compile | |
- name: Unit Tests | |
run: sbt test | |
doc: | |
name: Documentation and Formatting | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Scala | |
uses: olafurpg/setup-scala@v10 | |
- name: Documentation | |
id: doc | |
run: sbt doc | |
- name: Check Formatting | |
run: sbt scalafmtCheckAll |