chore(deps): update dependency rules_ecsact to v0.4.2 #354
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: CI | |
on: | |
push: | |
branches: | |
- "**" | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
formatting-check: | |
name: Formatting Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: jidicula/[email protected] | |
with: { clang-format-version: "15" } | |
test-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
/Users/runneradmin/AppData/Local/bazelisk | |
/Users/runneradmin/.cache/bazel-disk-cache | |
key: ${{runner.os}}-bazel-cache | |
- uses: actions/checkout@v3 | |
- run: bazel test --config=ci //... | |
test-linux: | |
runs-on: ubuntu-latest | |
steps: | |
# needed for wasmer 2.x | |
- run: sudo apt install libtinfo5 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/bazelisk | |
~/.cache/bazel-disk-cache | |
key: ${{runner.os}}-bazel-cache | |
- uses: actions/checkout@v3 | |
- run: bazel test --config=ci //... |