chore(deps): update dependency bazel_gazelle to v0.33.0 #107
Workflow file for this run
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 and Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
BuildAndTest: | |
strategy: | |
matrix: | |
os: [ ubuntu-22.04, macos-12 ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
mkdir -p ~/.cache/bazel | |
- uses: actions/cache@v3 | |
with: | |
path: ~/.cache/bazel | |
key: ${{ runner.os }}-bazel-${{ hashFiles('./WORKSPACE', '**/BUILD', '**/BUILD.bzl', '**/*.bzl', '.bazelrc') }} | |
restore-keys: | | |
${{ runner.os }}-bazel- | |
- run: bazel test --config ci //:unreal_target_test | |
- run: bazel build --config ci //:rules-unreal-engine | |