fix(nvml): handle "not supported" error to not fail-fast for NVML get… #1071
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://github.com/golangci/golangci-lint-action?tab=readme-ov-file#options | |
name: tests-e2e | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
paths: | |
- "**.go" | |
- go.mod | |
- go.sum | |
branches: ["**"] | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
tests-e2e: | |
name: tests-e2e | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: actions/setup-go@v5 | |
with: | |
cache: false | |
go-version-file: go.mod | |
- name: run e2e tests | |
run: | | |
./scripts/tests-e2e.sh |