Proposal for memory limiting in the scrape loop #539
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: proposals | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| pull_request: | |
| # actions/cache@v3 saves the Go module cache on miss. | |
| permissions: | |
| contents: read | |
| actions: write | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| name: Markdown formatting and link checking. | |
| steps: | |
| - name: Checkout code into the Go module directory. | |
| uses: actions/checkout@v3 | |
| - name: Install Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: 1.19.x | |
| - uses: actions/cache@v3 | |
| with: | |
| path: ~/go/pkg/mod | |
| key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
| - name: Check | |
| env: | |
| GOBIN: /tmp/.bin | |
| run: make check |