Update dependency (#286) #1549
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: Bazel Build and Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: [self-hosted, Linux, X64, Test] | |
steps: | |
- name: Cancel previous run | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v3 | |
- name: Test | |
run: | | |
make bazel-test | |
- name: Run clang-tidy | |
run: | | |
make clang-tidy |