mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-15 01:09:20 +02:00
fix workflows
This commit is contained in:
parent
dc2c17768a
commit
2dd3e55121
|
@ -191,7 +191,9 @@ jobs:
|
||||||
check-latest: true
|
check-latest: true
|
||||||
|
|
||||||
- name: Get project dependencies
|
- name: Get project dependencies
|
||||||
run: go mod download
|
run: |
|
||||||
|
go mod tidy
|
||||||
|
go mod download
|
||||||
|
|
||||||
- name: Build Xray
|
- name: Build Xray
|
||||||
run: |
|
run: |
|
||||||
|
|
|
@ -41,4 +41,6 @@ jobs:
|
||||||
key: xray-geodat-
|
key: xray-geodat-
|
||||||
enableCrossOsArchive: true
|
enableCrossOsArchive: true
|
||||||
- name: Test
|
- name: Test
|
||||||
run: go test -timeout 1h -v ./...
|
run: |
|
||||||
|
go mod tidy
|
||||||
|
go test -timeout 1h -v ./...
|
Loading…
Reference in New Issue