diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b139925..291fccf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/test/glojure/test_glojure/numbers.glj b/test/glojure/test_glojure/numbers.glj index a6ea7f2..0f815f9 100644 --- a/test/glojure/test_glojure/numbers.glj +++ b/test/glojure/test_glojure/numbers.glj @@ -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]]