Skip to content

Commit 5614988

Browse files
authored
Add github action (#54)
1 parent f1cabdd commit 5614988

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/linux_ci.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Docker compose CI on linux
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: use docker-compose
15+
run: cd ./example && docker-compose -p docker-apisix up -d

0 commit comments

Comments
 (0)