Commit 2924263
Changed files (5)
.github/workflows/ci.yml
@@ -11,5 +11,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
- go-version: 1.19
+ go-version: 1.24.3
- run: go test -v ./...
.tool-versions
@@ -1,1 +0,0 @@
-golang 1.18
go.mod
@@ -1,8 +1,6 @@
module github.com/xlgmokha/x
-go 1.23.0
-
-toolchain go1.24.2
+go 1.24.3
require (
github.com/golobby/container/v3 v3.3.2
Makefile
@@ -9,10 +9,6 @@ which:
clean:
@rm -f syslogs which
-setup:
- @mise install
- @go install tool
-
build: syslogs which
test:
README.md
@@ -6,7 +6,6 @@
### Prerequisites
-- [mise](https://mise.jdx.dev/)
- [make](https://www.gnu.org/software/make/)
### Installation
@@ -22,13 +21,7 @@
$ cd x
```
-3. Install the tools:
-
- ```bash
- $ make setup
- ```
-
-4. Run the test suite:
+3. Run the test suite:
```bash
$ make test