manta/.github/workflows/run_all_tests.yml
Workflow config file is invalid. Please check your config file: yaml: line 6: did not find expected '-' indicator

15 lines
385 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: ls -lai
- run: sh ./autoconf.sh
- run: ./configure
- run: make
= run: make check
- run: sudo make install