We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1af5560 commit 8af9c93Copy full SHA for 8af9c93
.github/workflows/cocotb.yml
@@ -1,10 +1,13 @@
1
name: pytest-cocotb
2
on: [push, pull_request]
3
jobs:
4
- container-test-job:
+ cocotb:
5
runs-on: ubuntu-latest
6
- container:
7
- image: ghcr.io/builderdev212/cocotb-runner
8
steps:
9
- - name: Run testbenches
10
- run: pytest -n 10
+ - name: Checkout code
+ uses: actions/checkout@v3
+ - name: Run pytest
+ uses: addnab/docker-run-action@v3
11
+ with:
12
+ image: ghcr.io/builderdev212/cocotb-runner:latest
13
+ run: pytest -n 10
0 commit comments