We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents eeaaa5a + 804829b commit ec2fb11Copy full SHA for ec2fb11
1 file changed
.github/workflows/action.yaml
@@ -0,0 +1,21 @@
1
+name: action
2
+on: [push, pull_request]
3
+jobs:
4
+ lint:
5
+ runs-on: ubuntu-20.04
6
+ steps:
7
+ - uses: actions/checkout@v2
8
+ - name: hadolint
9
+ run: docker run --rm -i hadolint/hadolint < Dockerfile
10
+ test:
11
12
13
14
+ - name: Init docker-compose
15
+ run: |
16
+ docker-compose up -d
17
+ sleep 1800
18
+ - name: Exec OpenStack CLI
19
20
+ docker-compose logs -t --tail=100
21
+ docker-compose exec -T --user stack devstack /bin/bash -c 'source devstack/openrc admin admin; openstack compute service list'
0 commit comments