Prevent Additional Error Count Increment in UNIT_TEST_END
#52
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: Ubuntu | |
on: [push, pull_request] | |
jobs: | |
lint-code: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt install pylint | |
- run: cd test; ./lint.sh | |
ci-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt install iverilog | |
- run: iverilog -V | |
- run: sudo apt install verilator | |
- run: verilator -V | |
- run: cd test; ./regression.sh |