Skip to content

Commit

Permalink
Update actions.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
VarunGaneshan authored Sep 16, 2024
1 parent edab3d8 commit f04973f
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,30 @@
name: learning-cocotb
run-name: ${{ github.actor }} is learning Cocotb
on:
on:
workflow_dispatch:

jobs:
verify:
runs-on: ubuntu-latest
timeout-minutes: 3
permissions:
contents: write
steps:
- uses: actions/checkout@v3

- run: sudo apt install -y --no-install-recommends iverilog

- run: pip3 install cocotb cocotb-bus

- run: make -C tests or
- uses: actions/upload-artifact@v3

- uses: actions/upload-artifact@v4
with:
name: waveform
path: tests/*.vcd

- name: Publish Test Report
uses: mikepenz/action-junit-report@v3
if: always() # always run even if the previous step fails
if: always()
with:
report_paths: '**/tests/results.xml'

0 comments on commit f04973f

Please sign in to comment.