Bump github.com/moby/buildkit from 0.11.5 to 0.12.5 #57
This file contains 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: Checks | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
Bazel: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/bazel | |
~/.cache/bazelisk | |
key: ${{ runner.os }}-Bazel-${{ hashFiles('WORKSPACE', '**/*.bazel', '**/*.bzl') }} | |
restore-keys: | | |
${{ runner.os }}-Bazel- | |
# Required by Clang 16: | |
- run: sudo apt-get install libtinfo5 | |
- run: bazel version | |
- run: bazel query //... | |
- run: bazel build --nobuild //... | |
- run: bazel test //tests/... | |
Go: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: ${{ runner.os }}-Go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-Go- | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: 1.20.2 | |
- run: go version | |
- run: go build github.com/attilaolah/fuzz/... |