v3 #367
| @@ -1,13 +1,15 @@ | |||||||
| name: pipeline |  | ||||||
| on: | on: | ||||||
|   pull_request: |   pull_request: | ||||||
|  |     types: [opened, reopened, closed, synchronize] | ||||||
|     branches: |     branches: | ||||||
|     - master |     - master | ||||||
|     - v3 |     - v3 | ||||||
|     - v4 |     - v4 | ||||||
|  | 
 | ||||||
| jobs: | jobs: | ||||||
|   lint: |   if_merged: | ||||||
|     name: lint |     name: lint | ||||||
|  |     if: ${{ github.event.pull_request.state != 'closed' || github.event.pull_request.merged == true }} | ||||||
|     runs-on: ubuntu-latest |     runs-on: ubuntu-latest | ||||||
|     steps: |     steps: | ||||||
|     - name: setup-go |     - name: setup-go | ||||||
| @@ -22,19 +24,3 @@ jobs: | |||||||
|       uses: https://github.com/golangci/golangci-lint-action@v6 |       uses: https://github.com/golangci/golangci-lint-action@v6 | ||||||
|       with: |       with: | ||||||
|         version: v1.62.2 |         version: v1.62.2 | ||||||
|   test: |  | ||||||
|     name: test |  | ||||||
|     runs-on: ubuntu-latest |  | ||||||
|     steps: |  | ||||||
|     - name: setup-go |  | ||||||
|       uses: actions/setup-go@v5 |  | ||||||
|       with: |  | ||||||
|         go-version: 'stable' |  | ||||||
|     - name: checkout |  | ||||||
|       uses: actions/checkout@v3 |  | ||||||
|     - name: deps |  | ||||||
|       run: go get -v -d ./... |  | ||||||
|     - name: test |  | ||||||
|       env: |  | ||||||
|         INTEGRATION_TESTS: yes |  | ||||||
|       run: go test -mod readonly -v ./... |  | ||||||
							
								
								
									
										31
									
								
								.gitea/workflows/job_test.yml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										31
									
								
								.gitea/workflows/job_test.yml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,31 @@ | |||||||
|  | on: | ||||||
|  |   pull_request: | ||||||
|  |     types: [opened, reopened, closed, synchronize] | ||||||
|  |     branches: | ||||||
|  |     - master | ||||||
|  |     - v3 | ||||||
|  |     - v4 | ||||||
|  |   push: | ||||||
|  |     branches: | ||||||
|  |       - master | ||||||
|  |       - v3 | ||||||
|  |       - v4 | ||||||
|  |  | ||||||
|  | jobs: | ||||||
|  |   if_merged: | ||||||
|  |     name: test | ||||||
|  |     if: ${{ github.event.pull_request.state != 'closed' || github.event.pull_request.merged == true }} | ||||||
|  |     runs-on: ubuntu-latest | ||||||
|  |     steps: | ||||||
|  |     - name: setup-go | ||||||
|  |       uses: actions/setup-go@v5 | ||||||
|  |       with: | ||||||
|  |         go-version: 'stable' | ||||||
|  |     - name: checkout | ||||||
|  |       uses: actions/checkout@v3 | ||||||
|  |     - name: deps | ||||||
|  |       run: go get -v -d ./... | ||||||
|  |     - name: test | ||||||
|  |       env: | ||||||
|  |         INTEGRATION_TESTS: yes | ||||||
|  |       run: go test -mod readonly -v ./... | ||||||
		Reference in New Issue
	
	Block a user