mirror of
https://github.com/openpower-cores/a2i.git
synced 2026-05-03 14:39:18 +00:00
Currently there are no testbenches provided with the project but the CI will still verify that each push and pull request to the project can be compiled. If/when tests are added they will also be executed with each push and PR.
14 lines
319 B
YAML
14 lines
319 B
YAML
name: VUnit Tests
|
|
on: [push, pull_request]
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: srt32/git-actions@v0.0.3
|
|
with:
|
|
args: git update-index --chmod=+x run.py
|
|
- uses: VUnit/vunit_action@master
|
|
with:
|
|
cmd: python3 ./run.py
|