We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 146a5b5 commit 0971e57Copy full SHA for 0971e57
2 files changed
.github/workflows/tests.yml
@@ -0,0 +1,20 @@
1
+name: Infrastructure Tests
2
+on:
3
+ push:
4
+ branches: [ master ]
5
+ pull_request:
6
7
+
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Infrastructure Tests
14
+ working-directory: test/integration
15
+ run: |
16
+ chmod +x runTests.sh
17
+ ./runTests.sh
18
+ env:
19
+ CX_INFRA_IT_CF_USERNAME: ${{ secrets.CX_INFRA_IT_CF_USERNAME }}
20
+ CX_INFRA_IT_CF_PASSWORD: ${{ secrets.CX_INFRA_IT_CF_PASSWORD }}
.travis.yml
0 commit comments