From 1ee945be88ac962dfb1cad6d9d379ca6f09d9a05 Mon Sep 17 00:00:00 2001 From: Alex Rodionov Date: Wed, 7 Feb 2024 04:51:06 -0800 Subject: [PATCH] Add basic CI check --- .github/workflows/ci.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..fbca08a --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,25 @@ +name: CI +on: + pull_request: + push: + branches: + - main + +concurrency: + group: ${{ github.ref }} + cancel-in-progress: true + +jobs: + setup-bazel: + runs-on: ${{ matrix.os }}-latest + strategy: + matrix: + os: + - macos + - ubuntu + - windows + steps: + - uses: actions/checkout@v4 + - uses: ./ + - if: failure() && runner.debug == '1' + uses: mxschmitt/action-tmate@v3