less. #851
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: "Go: Run Tests - Other OS" | |
on: | |
pull_request: | |
paths: | |
- "go/**" | |
- "!go/ql/**" # don't run other-os if only ql/ files changed | |
- .github/workflows/go-tests-other-os.yml | |
- .github/actions/** | |
- codeql-workspace.yml | |
- MODULE.bazel | |
- .bazelrc | |
- misc/bazel/** | |
push: | |
branches: | |
- criemen/debug | |
permissions: | |
contents: read | |
jobs: | |
test-win: | |
name: Test Windows | |
runs-on: windows-latest-xl | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
sparse-checkout: go | |
- name: dump env bash | |
shell: bash | |
run: | | |
where bazel | |
declare -px | |
bazel version | |
- name: Test | |
shell: bash | |
run: | | |
cd go | |
make gen | |
# - name: Run tests | |
# uses: ./go/actions/test |