adjust failing test output to the new format of inodes_free #174
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: "CodeQL" | |
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: '30 2 * * 1' | |
| jobs: | |
| analyze: | |
| name: Analyze Go | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: './go.mod' | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: go | |
| build-mode: manual | |
| - name: Download dependencies | |
| run: go mod download | |
| - name: Build test binaries | |
| run: | | |
| make test | |
| - name: Build all binaries | |
| run: | | |
| make build-linux-i386 | |
| make build-linux-amd64 | |
| make build-linux-arm64 | |
| make build-windows-i386 | |
| make build-windows-amd64 | |
| make build-windows-arm64 | |
| make build-darwin-aarch64 | |
| make build-freebsd-i386 | |
| make build-freebsd-amd64 | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 |