Think my for loops are broken #15
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: Verilog CI | |
on: [push, pull_request] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
name: Checkout code | |
- name: Setup Icarus Verilog | |
run: sudo apt-get update && sudo apt-get install -y iverilog | |
- name: Install virtualenv | |
run: sudo apt-get install -y python3-virtualenv | |
- name: Test Verilog Code | |
run: | | |
make test |