Skip to content

Add back WORKSPACE support #32

Add back WORKSPACE support

Add back WORKSPACE support #32

Workflow file for this run

name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
# Cancel previous actions from the same PR: https://stackoverflow.com/a/72408109
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
runs-on: ubuntu-latest

Check failure on line 19 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yaml

Invalid workflow file

You have an error in your yaml syntax on line 19
tests:
strategy:
matrix:
os: [ubuntu-latest]
bzlmod: [true, false]
runs-on: ${{ matrix.os }}
steps:
- name: "Checkout the sources"
uses: actions/checkout@v4
- name: Mount bazel caches
uses: actions/cache@v3
with:
path: |
~/.cache/bazel
key: bazel-cache-${{ hashFiles('**/BUILD.bazel', '**/*.bzl', 'WORKSPACE') }}
restore-keys: bazel-cache-
- name: "Setup Bazelisk"
uses: bazelbuild/setup-bazelisk@v2
- name: "Running tests //..."
run: bazel test //... --enable_bzlmod=true
integration-tests:
strategy:
matrix:
os: [ubuntu-latest]
bzlmod: [true, false]
directory: [examples/simple-android]
runs-on: ${{ matrix.os }}
steps:
- name: "Checkout the sources"
uses: actions/checkout@v4
- name: Mount bazel caches
uses: actions/cache@v3
with:
path: |
~/.cache/bazel
key: bazel-cache-${{ hashFiles('**/BUILD.bazel', '**/*.bzl', 'WORKSPACE') }}
restore-keys: bazel-cache-
- name: "Setup Bazelisk"
uses: bazelbuild/setup-bazelisk@v2
- name: "Running integration tests examples/simple-android"
working-directory: examples/simple-android
run: bazel test //... --enable_bzlmod=true