Compare commits

..

3 Commits

Author SHA1 Message Date
sammyette bfa3b55542
chore: merge 2024-07-19 09:51:12 -04:00
sammyette f7e66bb957
docs: bump version requirement 2024-07-19 09:48:40 -04:00
sammyette d7ab887234
feat: allow builds for unix (#311) 2024-07-19 09:48:01 -04:00
13 changed files with 13 additions and 13 deletions

View File

@ -29,7 +29,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.18.8'
go-version: '1.22.2'
- name: Download Task
run: 'sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d'
- name: Build

View File

@ -36,7 +36,7 @@ on the website for distributed binaries from GitHub or other package repositorie
Otherwise, continue reading for steps on compiling.
## Prerequisites
- [Go 1.17+](https://go.dev)
- [Go 1.22+](https://go.dev)
- [Task](https://taskfile.dev/installation/) (**Go on the hyperlink here to see Task's install method for your OS.**)
## Build

View File

@ -1,4 +1,4 @@
// +build linux darwin
//go:build unix
package main

View File

@ -1,4 +1,4 @@
// +build windows
//go:build windows
package main

View File

@ -1,4 +1,4 @@
// +build windows
//go:build windows
package main

View File

@ -1,4 +1,4 @@
// +build darwin linux
//go:build unix
package main

View File

@ -1,4 +1,4 @@
// +build windows
//go:build windows
package main

View File

@ -1,4 +1,4 @@
// +build pprof
//go:build pprof
package main

View File

@ -1,4 +1,4 @@
// +build darwin linux
//go:build unix
package main

View File

@ -1,4 +1,4 @@
// +build windows
//go:build windows
package main

View File

@ -1,4 +1,4 @@
// +build darwin
//go:build darwin
package main

View File

@ -1,4 +1,4 @@
// +build linux
//go:build unix && !darwin
package main

View File

@ -1,4 +1,4 @@
// +build windows
//go:build windows
package main