update github ci

This commit is contained in:
Gerasimos (Makis) Maropoulos 2023-03-17 12:42:19 +02:00
parent ec2d9d016e
commit 41326d4ddd
No known key found for this signature in database
GPG Key ID: B9839E9CD30B7B6B
2 changed files with 4 additions and 4 deletions

View File

@ -17,16 +17,16 @@ jobs:
strategy:
matrix:
go_version: [1.19.x]
go_version: [1.20.x]
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go_version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Test
run: go test -v ./...

View File

@ -475,7 +475,7 @@ $ go get github.com/kataras/iris/v12@latest
**Run**
```sh
$ go mod tidy -compat=1.19 # -compat="1.19" for windows.
$ go mod tidy -compat=1.20 # -compat="1.20" for windows.
$ go run .
```