Skip to content

Commit 2472dd5

Browse files
committed
github action updates
1 parent 5899f67 commit 2472dd5

File tree

1 file changed

+17
-36
lines changed

1 file changed

+17
-36
lines changed

.github/workflows/go.yml

+17-36
Original file line numberDiff line numberDiff line change
@@ -1,90 +1,71 @@
1-
name: Go
1+
name: GoFrame CI
22

33
on:
44
push:
55
branches:
66
- master
7-
- main
87
- develop
9-
- staging
108
pull_request:
11-
branches: [ master ]
9+
branches: [master, develop]
1210
env:
1311
GF_DEBUG: 1
1412

1513
jobs:
16-
1714
code-test:
1815
runs-on: ubuntu-latest
1916
# Service containers to run with `code-test`
2017
services:
2118
redis:
22-
image: redis
19+
image : redis
2320
options: >-
24-
--health-cmd "redis-cli ping"
21+
--health-cmd "redis-cli ping"
2522
--health-interval 10s
26-
--health-timeout 5s
27-
--health-retries 5
23+
--health-timeout 5s
24+
--health-retries 5
2825
ports:
2926
# Maps tcp port 6379 on service container to the host
3027
- 6379:6379
31-
postgres:
32-
image: postgres:9
33-
# Provide the password for postgres
34-
env:
35-
POSTGRES_PASSWORD: postgres
36-
# Set health checks to wait until postgres has started
37-
options: >-
38-
--health-cmd pg_isready
39-
--health-interval 10s
40-
--health-timeout 5s
41-
--health-retries 5
42-
ports:
43-
# Maps tcp port 5432 on service container to the host
44-
- 5432:5432
4528
mysql:
4629
image: mysql:5.7
4730
env:
31+
MYSQL_DATABASE : test
4832
MYSQL_ROOT_PASSWORD: 12345678
49-
MYSQL_DATABASE: test
5033
ports:
5134
# Maps tcp port 3306 on service container to the host
5235
- 3306:3306
5336

5437
# strategy set
5538
strategy:
5639
matrix:
57-
go: [ '1.13', '1.14','1.15','1.16' ]
40+
go: ["1.14", "1.15", "1.16"]
5841

5942
steps:
60-
61-
- uses: szenius/[email protected]
43+
- name: Set Up Timezone
44+
uses: szenius/[email protected]
6245
with:
6346
timezoneLinux: "Asia/Shanghai"
6447

65-
- uses: actions/checkout@v2
48+
- name: Checkout Repositary
49+
uses: actions/checkout@v2
6650

67-
- name: Set up Go
51+
- name: Set Up Go
6852
uses: actions/setup-go@v2
6953
with:
7054
go-version: ${{ matrix.go }}
7155

72-
- name: Before script
56+
- name: Before Script
7357
run: |
7458
date
7559
find . -name "*.go" | xargs gofmt -w
7660
git diff --name-only --exit-code || exit 1
7761
sudo echo "127.0.0.1 local" | sudo tee -a /etc/hosts
7862
79-
# - name: Build
80-
# run: go build -v ./...
81-
82-
- name: 386 mode Test
63+
- name: Run i386 Arch Test
8364
run: GOARCH=386 go test -v ./... || exit 1
8465

85-
- name: amd64 mode Test
66+
- name: Run amd64 Arch Test
8667
run: GOARCH=amd64 go test -v ./... -race -coverprofile=coverage.txt -covermode=atomic
8768

88-
- name: report coverage
69+
- name: Report Coverage
8970
run: bash <(curl -s https://codecov.io/bash)
9071

0 commit comments

Comments
 (0)