This is an automated email from the ASF dual-hosted git repository.
wenming pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-apisix-docker.git
The following commit(s) were added to refs/heads/master by this push:
new 5614988 Add github action (#54)
5614988 is described below
commit 561498864c97a16499b84d667a04c8478d990dbd
Author: kv <[email protected]>
AuthorDate: Tue May 26 14:27:39 2020 +0800
Add github action (#54)
---
.github/workflows/linux_ci.yml | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/.github/workflows/linux_ci.yml b/.github/workflows/linux_ci.yml
new file mode 100644
index 0000000..dc15281
--- /dev/null
+++ b/.github/workflows/linux_ci.yml
@@ -0,0 +1,15 @@
+name: Docker compose CI on linux
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: use docker-compose
+ run: cd ./example && docker-compose -p docker-apisix up -d