Skip to content

Commit

Permalink
Update Go version to 1.14
Browse files Browse the repository at this point in the history
Upgraded the Go setup in the unit-test workflow from version 1.13 to 1.14. Modified both the GitHub Actions configuration and go.mod file accordingly to ensure consistent version usage throughout the project.
  • Loading branch information
templexxx committed Aug 6, 2024
1 parent 1953384 commit dd76d37
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 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.13
- name: Set up Go 1.14
uses: actions/setup-go@v1
with:
go-version: 1.13
go-version: 1.14
id: go

- name: Check out code into the Go module directory
Expand Down
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.13
go 1.14

0 comments on commit dd76d37

Please sign in to comment.