diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..5abcd66 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,19 @@ +name: Infrastructure Tests +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Infrastructure Tests + run: | + chmod +x runTests.sh + ./runTests.sh + env: + CX_INFRA_IT_CF_USERNAME: ${{ secrets.CX_INFRA_IT_CF_USERNAME }} + CX_INFRA_IT_CF_PASSWORD: ${{ secrets.CX_INFRA_IT_CF_PASSWORD }} diff --git a/.travis.yml b/.travis.yml deleted file mode 100755 index bc34f09..0000000 --- a/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ -branches: - only: - - master - - /^it\/.*$/ -language: minimal -services: -- docker -script: chmod +x runTests.sh && ./runTests.sh