From f0608173d31e4c50aabc1c03f6ccb3afa3a68134 Mon Sep 17 00:00:00 2001 From: eine Date: Fri, 27 Mar 2020 00:55:56 +0100 Subject: [PATCH] ci: add GitHub Actions 'test' workflow --- .github/workflows/test.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..7fdb45e --- /dev/null +++ b/.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