Skip to content

Commit

Permalink
Update Go version to 1.19 in CI workflow and go.mod
Browse files Browse the repository at this point in the history
Upgraded the Go version from 1.14 to 1.19 in the GitHub Actions workflow and go.mod file to ensure compatibility with the latest features and improvements. Also removed unnecessary environment variables in the test run command.
  • Loading branch information
templexxx committed Aug 6, 2024
1 parent dd76d37 commit 1f1a308
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.14
- name: Set up Go 1.19
uses: actions/setup-go@v1
with:
go-version: 1.14
go-version: 1.19
id: go

- name: Check out code into the Go module directory
Expand All @@ -33,4 +33,4 @@ jobs:
dep ensure
fi
- name: Run test
run: CGO_ENABLED=1 GO111MODULE=on go test -v -race
run: go test -v -race
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module github.com/templexxx/xorsimd

require github.com/templexxx/cpu v0.1.1

go 1.14
go 1.19

0 comments on commit 1f1a308

Please sign in to comment.