Skip to content

Commit

Permalink
Create bazelisk.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dragossusi authored Oct 15, 2024
1 parent 8e1d572 commit 85f6733
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/bazelisk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Bazelisk CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: bazelbuild/setup-bazelisk@v3
- name: Mount bazel cache # Optional
uses: actions/cache@v4
with:
path: "~/.cache/bazel"
key: bazel
- run: bazel build //...

0 comments on commit 85f6733

Please sign in to comment.