feat(launcher): Add credential refresh to launcher #5048
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: pre-commit | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Fetch base branch | |
| run: git fetch origin ${{ github.base_ref || github.ref_name }} | |
| - uses: actions/setup-python@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v8 | |
| with: | |
| version: v2.3 | |
| args: --new --new-from-merge-base=origin/${{ github.base_ref || github.ref_name }} | |
| #- uses: pre-commit/[email protected] | |
| # # This is set to only run the golangci-lint pre-commit hooks | |
| # # Remove in a later PR to run all hooks | |
| # with: | |
| # go-version: '>=1.24.2' | |
| # extra_args: golangci-lint --all-files |