Skip to content

Commit

Permalink
Debug failures
Browse files Browse the repository at this point in the history
Signed-off-by: James Hamlin <[email protected]>
  • Loading branch information
jfhamlin committed Nov 27, 2023
1 parent b27434b commit 5ecbace
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ jobs:
go-version: ${{ matrix.go }}
cache: false
- run: make test
- name: Debug with tmate on failure
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3
1 change: 0 additions & 1 deletion test/glojure/test_glojure/numbers.glj
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@
[char [:error (char 0) (char 1) (char 127) (char 32767) :error :error :error :error]]
;; In go, char == rune, which is equivalent to int32
[unchecked-char [(Char -1) (Char 0) (Char 1) (Char 127) (Char 32767) (Char math.MaxInt32) (Char -1) (Char -1) (Char -1)]]
;; bytes are unsigned in go
[byte [255 0 1 math.MaxInt8 :error :error :error :error :error]]
;; bytes are unsigned in go
[unchecked-byte [255 0 1 math.MaxInt8 255 255 255 255 255]]
Expand Down

0 comments on commit 5ecbace

Please sign in to comment.