Fix a bug in pressure/tilt/orientation stylus modeling and the loop c… #654
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
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions | |
name: BazelTest | |
on: [push, workflow_dispatch] | |
jobs: | |
bazel_test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test (Linux and Mac config) | |
if: runner.os != 'Windows' | |
run: bazel test --test_output=errors //... | |
- name: Test (Windows config) | |
if: runner.os == 'Windows' | |
run: bazel test --config=win_clang --test_output=errors //... |