Go SDK for Zowe #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: zXplore Integration Test | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.21.x' | |
| - name: Test zXplore Integration | |
| env: | |
| ZXPLORE_HOST: ${{ secrets.ZXPLORE_HOST }} | |
| ZXPLORE_PORT: ${{ secrets.ZXPLORE_PORT }} | |
| ZXPLORE_USER: ${{ secrets.ZXPLORE_USER }} | |
| ZXPLORE_PASSWORD: ${{ secrets.ZXPLORE_PASSWORD }} | |
| run: go run test_zxplore_github.go |