Skip to content

New CI

New CI #2

Workflow file for this run

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