Skip to content

Commit

Permalink
Add Docker step to Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vorot93 committed Mar 30, 2021
1 parent d4c10c9 commit 088b83b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,11 @@ jobs:
skip-build-cache: true
- name: Test
run: make test
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Docker
run: docker build .
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ mdbx:
&& CFLAGS_EXTRA="-Wno-deprecated-declarations" make mdbx-static.o

test: mdbx
$(GOTEST) --timeout 15m
$(GOTEST)

test-lmdb:
TEST_DB=lmdb $(GOTEST)
Expand Down

0 comments on commit 088b83b

Please sign in to comment.