Skip to content

Commit

Permalink
Merge pull request motemen#5 from Songmu/fix-ci
Browse files Browse the repository at this point in the history
fix CI
  • Loading branch information
motemen authored Nov 2, 2023
2 parents e96bb70 + 8e319bb commit 51803ca
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
versions=$(curl -s 'https://go.dev/dl/?mode=json' | jq -c 'map(.version[2:])')
echo "value=${versions}" >> $GITHUB_OUTPUT
test:
needs: go-version
needs: go-versions
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down
3 changes: 2 additions & 1 deletion global/global.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
package global

import (
"github.com/motemen/go-loghttp"
"net/http"

"github.com/motemen/go-loghttp"
)

func init() {
Expand Down
5 changes: 3 additions & 2 deletions global/global_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
package global
package global_test

import (
_ "github.com/motemen/go-loghttp/global"
"net/http"

_ "github.com/motemen/go-loghttp/global"
)

var client = &http.Client{}
Expand Down

0 comments on commit 51803ca

Please sign in to comment.