From faf83096298c52f6dab66bb5ee90f2d8dc833cac Mon Sep 17 00:00:00 2001 From: umarcor Date: Wed, 21 Jul 2021 18:04:15 +0200 Subject: [PATCH] ci: in job 'VUnit' use a container step instead of a container job Signed-off-by: umarcor --- .github/workflows/test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4f5fbe6..51cd5e1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -54,10 +54,11 @@ jobs: VUnit: needs: [build] runs-on: ubuntu-latest - container: ghdl/vunit:llvm steps: - uses: actions/checkout@v2 - - run: python3 ./run.py -p10 + - uses: docker://ghdl/vunit:llvm + with: + args: python3 ./run.py -p10 symbiflow: strategy: