chore: use notFound
error instead KeyNotFound
error (#113)
#337
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: Simulation Tests | |
on: | |
pull_request: | |
push: | |
paths-ignore: | |
- '*.md' | |
branches: | |
- main | |
- release/* | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
if: env.GIT_DIFF | |
with: | |
go-version: "stable" | |
cache: true | |
cache-dependency-path: go.sum | |
- name: Run simulation tests | |
run: make test-sim-ci |