add vivado skip #5
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 requirements | |
run: pip install -r requirements.txt | |
- name: Gitman update | |
run: gitman update | |
- name: Run simulations | |
run: python run.py --vivado-skip |