Skip to content

Commit

Permalink
Added initial workflow. (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgrindel authored Jul 16, 2021
1 parent 74ad0c8 commit 8ef1e99
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/bazel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Bazel

on:
pull_request:
branches: [ main ]

jobs:
macos_build:

runs-on: macos-11.0

steps:
- uses: actions/checkout@v2

- name: Output the Bazel Info
shell: bash
run: |
bazelisk info
- name: Execute Tests
shell: bash
run: |
bazelisk test //...
- name: Build Anything Not Tested
shell: bash
run: |
bazelisk build //...

0 comments on commit 8ef1e99

Please sign in to comment.