Bump everything to fix vulnerability #189
This file contains hidden or 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: build and run testbenches | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-tests | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/hdl/iverilog:latest | |
steps: | |
- name: Set up repositoty | |
uses: actions/checkout@v5 | |
- name: Install make | |
run: | | |
apt-get update -qq | |
DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends make | |
- name: Build and start testbenches | |
run: | | |
find src -type f -name "Makefile" -execdir make \; |