1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-22 23:45:24 +00:00

Test: refine & cache Go modules

This commit is contained in:
loyalsoldier 2020-08-31 01:10:28 +08:00
parent 42e33ddde6
commit c974908e19
No known key found for this signature in database
GPG Key ID: 23829BBC1ACF2C90

View File

@ -7,6 +7,7 @@ on:
- "**/*.go"
pull_request:
branches: [master]
types: [opened, synchronize, reopened]
paths:
- "**/*.go"
@ -22,12 +23,15 @@ jobs:
with:
go-version: ^1.14
- name: Checkout default branch
- name: Checkout codebase
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Cache go module
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-
- name: Test
run: go test -parallel 1 -timeout 6h -v ./...
run: go test -timeout 1h -v ./...