Add plt build command to download and cut playlist media #2379
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: fast lint checks | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| shellcheck: | |
| name: runner / shellcheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: shellcheck | |
| uses: reviewdog/action-shellcheck@v1 | |
| with: | |
| github_token: ${{ secrets.GORELEASER_GITHUB_TOKEN }} | |
| reporter: github-pr-review # Change reporter. | |
| path: "." # Optional. | |
| pattern: "*.sh" # Optional. | |
| exclude: | | |
| */.git/* | |
| ./vendor/* | |
| golangci-lint: | |
| name: runner / golangci-lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: golangci-lint | |
| uses: reviewdog/action-golangci-lint@v2 | |
| with: | |
| reporter: github-pr-review | |
| github_token: ${{ secrets.GORELEASER_GITHUB_TOKEN }} | |
| golangci_lint_flags: "--config=.golangci.yml" | |
| vendor-neutral: | |
| name: runner / vendor-neutral | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| with: | |
| persist-credentials: false | |
| - name: vendor-neutrality guard | |
| run: ./scripts/check-vendor-neutral.sh |