feature/support merchant advice code and missing 3DS fields #183
Workflow file for this run
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: omise-go v1 | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| env: | |
| WORKDIR: src/github.com/${{ github.repository }} | |
| strategy: | |
| matrix: | |
| go: [ '1.21', '1.20', '1.19', '1.18', '1.17' ] | |
| steps: | |
| - name: Set up Go ${{ matrix.go }} | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| cache: false | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| path: ${{ env.WORKDIR }} | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v3 | |
| with: | |
| version: v1.54 | |
| working-directory: ${{ env.WORKDIR }} | |
| - name: Build | |
| working-directory: ${{ env.WORKDIR }} | |
| run: .github/scripts/setup.sh | |
| - name: Test | |
| working-directory: ${{ env.WORKDIR }} | |
| env: | |
| OMISE_PKEY: pkey_test_xxx | |
| OMISE_SKEY: skey_test_xxx | |
| GOPATH: ${{ github.workspace }} | |
| run: .github/scripts/test.sh | |
| - name: SonarCloud Scan | |
| uses: SonarSource/sonarcloud-github-action@master | |
| if: matrix.go == '1.21' | |
| with: | |
| projectBaseDir: ${{ env.WORKDIR }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |