Update CI #3

Merged
lunny merged 2 commits from lunny/upgrade_ci into master 2024-03-15 15:07:14 +00:00
2 changed files with 10 additions and 27 deletions

@ -3,38 +3,15 @@ on:
- push
- pull_request
env:
GOPROXY: https://goproxy.io,direct
GOPATH: /go_path
GOCACHE: /go_cache
jobs:
lint:
name: check and test
runs-on: ubuntu-latest
steps:
- name: cache go path
id: cache-go-path
uses: https://github.com/actions/cache@v3
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
path: /go_path
key: go_path-${{ github.repository }}-${{ github.ref_name }}
restore-keys: |
go_path-${{ github.repository }}-
go_path-
- name: cache go cache
id: cache-go-cache
uses: https://github.com/actions/cache@v3
with:
path: /go_cache
key: go_cache-${{ github.repository }}-${{ github.ref_name }}
restore-keys: |
go_cache-${{ github.repository }}-
go_cache-
- uses: actions/setup-go@v3
with:
go-version: 1.20
- uses: actions/checkout@v3
go-version-file: 'go.mod'
- name: build
run: go build -v
- name: test

8
go.mod

@ -1,6 +1,6 @@
module gitea.com/go-chi/captcha
go 1.11
go 1.21
require (
gitea.com/go-chi/cache v0.0.0-20210110083709-82c4c9ce2d5e
@ -8,3 +8,9 @@ require (
github.com/smartystreets/goconvey v0.0.0-20190731233626-505e41936337
github.com/unknwon/com v0.0.0-20190804042917-757f69c95f3e
)
require (
github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e // indirect
github.com/jtolds/gls v4.20.0+incompatible // indirect
github.com/smartystreets/assertions v0.0.0-20190116191733-b6c0e53d7304 // indirect
)