This repository has been archived by the owner on Apr 20, 2024. It is now read-only.
Update deprecated APIs to prepare for Chisel 5 #110
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: Test | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
scala: [ 2.12.14 ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Scala | |
uses: olafurpg/setup-scala@v10 | |
- name: Cache | |
uses: coursier/cache-action@v5 | |
- name: Get submodules | |
run: git submodule update --init | |
- name: Test | |
run: sbt test | |
doc: | |
name: Documentation and formatting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Scala | |
uses: olafurpg/setup-scala@v10 | |
- name: Check Formatting | |
run: sbt scalafmtCheckAll | |
all_test_passed: | |
name: "all tests passed" | |
runs-on: ubuntu-latest | |
needs: [test, doc] | |
steps: | |
- run: echo Success |