Fix: Roll-back v1.2.0 and remove almost flags threshold #23
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: Async_FIFO | |
on: [push] | |
jobs: | |
Lint: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: brew install verilator | |
- run: ./flow.sh lint | |
Simulation: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: brew install verilator | |
- run: brew install icarus-verilog | |
- run: ./flow.sh sim | |
Synthesis: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: brew install yosys | |
- run: ./flow.sh syn |