concat filename and line number with colon for better redirection #36
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 |