diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f485dff..03119f2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go: [ '1.11', '1.12', '1.13' ] + go: [ '1.24', '1.25', '1.26' ] name: Go Version ${{ matrix.go }} steps: - uses: actions/checkout@v4 diff --git a/embedmd/embedmd_test.go b/embedmd/embedmd_test.go index 47efa66..8c113c8 100644 --- a/embedmd/embedmd_test.go +++ b/embedmd/embedmd_test.go @@ -238,7 +238,7 @@ func TestProcess(t *testing.T) { in: "# This is some markdown\n" + "[embedmd]:# (https://fakeurl.com\\main.go)\n" + "Yay!\n", - err: "2: could not read https://fakeurl.com\\main.go: parse https://fakeurl.com\\main.go: invalid character \"\\\\\" in host name", + err: "2: could not read https://fakeurl.com\\main.go: parse \"https://fakeurl.com\\\\main.go\": invalid character \"\\\\\" in host name", }, { name: "ignore commands in code blocks",