Add config setting to limit number of log lines in a rageshake #149
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: Linting, build, test and release | |
| # Runs on each PR to lint and test | |
| # Runs on each release (via github UI) to lint and test, then upload binary to the release | |
| on: | |
| pull_request: | |
| push: | |
| branches: [master] | |
| release: | |
| types: [published] | |
| permissions: | |
| contents: write | |
| jobs: | |
| changelog: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| # do a full clone; we need to also get the branch master, required to allow towncrier to diff properly. | |
| - uses: actions/setup-python@v3 | |
| - name: Install towncrier | |
| run: pip install 'towncrier>19.2' | |
| - name: Run towncrier | |
| run: python -m towncrier.check | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-go@v3 | |
| with: | |
| go-version: 1.23 | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8 | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| # build against our minimum supported version, and the most recent major relesase. | |
| golang: ["1.23", "^1.23"] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-go@v3 | |
| with: | |
| go-version: "${{ matrix.golang }}" | |
| - name: Build | |
| run: go build | |
| - name: Test | |
| run: go test | |
| - name: Create tarball for release | |
| if: github.event.release | |
| run: tar -czf rageshake.tar.gz rageshake | |
| - name: Upload tarball to matching release | |
| if: github.event.release | |
| uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 | |
| with: | |
| files: rageshake.tar.gz | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |