Added some changes to the CI.yml
Some checks failed
Golan Testing / testing (1.24.x, ubuntu-latest) (push) Failing after 21s
Some checks failed
Golan Testing / testing (1.24.x, ubuntu-latest) (push) Failing after 21s
This commit is contained in:
9
.github/workflows/CI.yml
vendored
9
.github/workflows/CI.yml
vendored
@ -7,6 +7,7 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- develop
|
- develop
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
|
- '.github/**'
|
||||||
- 'README.md'
|
- 'README.md'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
@ -19,16 +20,18 @@ jobs:
|
|||||||
os:
|
os:
|
||||||
- ubuntu-latest
|
- ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/setup-go@v5
|
- name: Set up Golang environment
|
||||||
|
uses: actions/setup-go@v5
|
||||||
with:
|
with:
|
||||||
go-version: ${{ matrix.go-version }}
|
go-version: ${{ matrix.go-version }}
|
||||||
|
|
||||||
- uses: actions/checkout@v4
|
- name: Checkout Code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Go Get / Go Test
|
- name: Go Get / Go Test
|
||||||
run: |
|
run: |
|
||||||
go get -u .
|
go get -u .
|
||||||
go test ./.
|
go test ./...
|
||||||
|
|
||||||
- name: Output Summary
|
- name: Output Summary
|
||||||
id: output-summary
|
id: output-summary
|
||||||
|
Reference in New Issue
Block a user