Skip to content

Commit

Permalink
fix: Adding gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
langecode committed Oct 4, 2021
1 parent 9537c72 commit 1e7baa7
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI

on:
push:
branches:
- main
pull_request: {}

jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: bazelbuild/setup-bazelisk@v1
- name: Mount bazel cache
uses: actions/cache@v2
with:
path: "~/.cache/bazel"
key: bazel
- run: bazel test //...

0 comments on commit 1e7baa7

Please sign in to comment.