Add tsfpga #2
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: VUnit Tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: ghdl/vunit:mcode | |
steps: | |
- name: Install git on container | |
run: | | |
apt update | |
apt install -y git | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Install python dependencies | |
run: pip install -r tsfpga/tsfpga/requirements.txt | |
- name: Run simulations | |
run: python run.py |