Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions docs/fix-runtime-go-testing-workflow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Fix for #2443: runtime-go-testing.yml YAML syntax error

## Problem
Line 29 and 31 have `-name:` instead of ` - name:` (missing space after dash)

## Patch
```diff
--- a/.github/workflows/runtime-go-testing.yml
+++ b/.github/workflows/runtime-go-testing.yml
@@ -26,11 +26,11 @@
with:
go-version: 1.20
- -name: Generate Go Models
+ - name: Generate Go Models
run: npm run generate:runtime:go
- -name: Run runtime Tests
+ - name: Run runtime Tests
run: npm run test:runtime:go
```

Also recommended: upgrade `actions/checkout@v2` → `v4`, `actions/setup-node@v1` → `v4`, `actions/setup-go@v2` → `v5`
Loading