Ensure android-kotlin sandwich targets are treated as android modules… #308
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: Build workflow | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Bazel build | |
uses: ./.github/actions/bazel | |
with: | |
bazel-command: run | |
bazel-targets: //:buildifier -- --mode=check -r $(pwd) | |
cache-key: bazel-lint | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Bazel build | |
uses: ./.github/actions/bazel | |
with: | |
bazel-command: build | |
bazel-targets: //... | |
cache-key: bazel-build | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Bazel test | |
uses: ./.github/actions/bazel | |
with: | |
bazel-command: test | |
bazel-targets: //... | |
cache-key: bazel-test |