Browse Source
Merge pull request #2 from eine/master
ci: add GitHub Actions 'test' workflow
master
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
13 additions and
0 deletions
-
.github/workflows/test.yml
|
|
@ -0,0 +1,13 @@ |
|
|
|
name: 'test' |
|
|
|
|
|
|
|
on: [ push, pull_request ] |
|
|
|
|
|
|
|
jobs: |
|
|
|
|
|
|
|
docker: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v1 |
|
|
|
with: |
|
|
|
submodules: recursive |
|
|
|
- run: docker run --rm -tv $(pwd):/src -w /src/test -e BUILD_NAME=ACCEPTANCE ghdl/vunit:llvm make all |