[Release 3.0.0] Regenerate clients - commit e461ab2a316d5f9090d3e4bbf9cfb77922040f99 #108
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: test | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| operating-system: [ubuntu-latest, windows-latest] | |
| runs-on: ${{ matrix.operating-system }} | |
| steps: | |
| - name: Disable EOL conversions | |
| run: git config --global core.autocrlf false | |
| - name: Checkout | |
| uses: actions/checkout@master | |
| - name: Install Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: '1.19' | |
| - name: Go mod tidy | |
| run: go mod tidy | |
| - name: Run tests | |
| env: | |
| CLIENT_ID: ${{ secrets.CLIENT_ID }} | |
| CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }} | |
| run: go test -v |