build(deps): bump golang.org/x/oauth2 from 0.0.0-20180821212333-d2e6202438be to 0.27.0 #22
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: "Unit Test" | |
| on: [push,pull_request] | |
| jobs: | |
| unit_test: | |
| name: Unit Test | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| go: [ "1.15", "1.16" ] | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| steps: | |
| - name: Set up Go 1.x | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Build | |
| run: go build ./... | |
| - name: Test | |
| run: go test ./... |