-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Inventory - Add go1.19.5, go1.18.10, go1.17.13 and others (#57)
* Update inventory * Prepare 0.1.1 release * Constrain 1.18 project to 1.18 * Adjust version specifier expectation * Add test for go1.19
- Loading branch information
1 parent
ab0e596
commit 88a6792
Showing
7 changed files
with
175 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module example.com/basic_http_119 | ||
|
||
// +heroku goVersion ~1.19.4 | ||
|
||
go 1.19 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"net/http" | ||
) | ||
|
||
func root(w http.ResponseWriter, req *http.Request) { | ||
fmt.Fprintf(w, "basic_http_119") | ||
} | ||
|
||
func main() { | ||
port := os.Getenv("PORT") | ||
if port == "" { port = "8080" } | ||
|
||
http.HandleFunc("/", root) | ||
http.ListenAndServe(":" + port, nil) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module example.com/worker_http_118 | ||
|
||
// +heroku goVersion ^1.18.1 | ||
// +heroku goVersion ~1.18.1 | ||
go 1.18 | ||
|
||
// +heroku install example.com/worker_http_118/cmd/web example.com/worker_http_118/cmd/worker |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters