Adds a new section in README to guide developers on handling OAuth Client IDs and secrets in CLI/headless apps #82
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
| on: [push, pull_request] | |
| name: CI | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| go: [ '1.21', '1.22', '1.23' ] | |
| os: [ ubuntu-latest, macos-latest, windows-latest ] | |
| fail-fast: false | |
| name: Test suite | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup Go | |
| uses: actions/setup-go@v1 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Run tests | |
| run: go test -v ./... |