update github actions #198
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: tests | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
container: | |
runs-on: ubuntu-latest | |
container: ghdl/vunit:gcc-master | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
apt update | |
apt install --yes python3-pil python3-requests | |
- name: Run tests | |
run: | | |
cd sim | |
python3 run_all.py -p4 |