feat: update project tt_um_a1k0n_vgadonut from a1k0n/tt08-vga-donut #80
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: formal | |
on: | |
workflow_dispatch: | |
push: | |
# Don't run on project submissions: | |
branches-ignore: | |
- projects/tt_um_* | |
pull_request: | |
# Don't run on project submissions: | |
paths-ignore: | |
- projects/tt_um_*/** | |
jobs: | |
formal: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: install oss-cad-suite (cocotb / iverilog) | |
uses: YosysHQ/setup-oss-cad-suite@v3 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- run: | | |
yosys --version | |
- name: Python requirements | |
run: pip3 install -r tt-multiplexer/py/requirements.txt | |
- name: formal tristate | |
working-directory: tt-multiplexer | |
run: make formal_tristate | |
- name: formal tristate | |
working-directory: tt-multiplexer | |
run: make formal_connectivity |