Update README.md #32
This file contains hidden or 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: Simulation-Level Verifications | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v27 | |
| - name: Setup development environment | |
| run: nix develop | |
| - name: List current directory | |
| run: pwd | |
| - name: Elaborate verilog | |
| run: nix develop --command make verilog | |
| - name: Run verilator sanity test | |
| run: nix develop --command make verilator-sanity-test | |
| - name: Clean | |
| run: nix develop --command make clean |