manta/.github/workflows/run_all_tests.yml

13 lines
342 B
YAML

name: run_all_tests
on: [push]
jobs:
install-iverilog:
runs-on: ubuntu-latest
steps:
- run: sudo apt install bison flex g++ gcc
- run: git clone https://github.com/steveicarus/iverilog.git
- run: cd iverilog/
- run: chmod +x configure
- run: ./configure
- run: make
- run: sudo make install