Skip to content

Commit

Permalink
text fix
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardopinosio committed Mar 21, 2024
1 parent f9d091d commit 310a20a
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: |
go mod download
- name: Build and run tests
run: make run-tests
run: make clean run-tests
- name: Install goveralls
run: go install github.com/mattn/goveralls@latest
- name: Send coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: |
go mod download
- name: Build and run tests
run: make run-tests
run: make clean run-tests
- name: Install goveralls
run: go install github.com/mattn/goveralls@latest
- name: Send coverage
Expand Down
1 change: 0 additions & 1 deletion hugot_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ func TestMain(m *testing.M) {
}
err = os.MkdirAll("./models", os.ModePerm)
if err != nil {
fmt.Println(os.Getwd())
panic(err)
}
downloadOptions := NewDownloadOptions()
Expand Down
1 change: 0 additions & 1 deletion scripts/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,4 @@ fi

echo "$1 running with user: $user_name"
chown "$user_name:$user_name" "$1" && chmod +x "$1"
ls -la /build
exec runuser -u $user_name -- "$1" "${arguments[@]}"

0 comments on commit 310a20a

Please sign in to comment.