You've already forked civ
							
							Compare commits
	
		
			3 Commits
		
	
	
		
			v0.1.0
			...
			51bf8cba6b
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 51bf8cba6b | |||
| 17695e0996 | |||
| e473009b6e | 
| @@ -9,13 +9,16 @@ on: | |||||||
|  |  | ||||||
| jobs: | jobs: | ||||||
|   unittest: |   unittest: | ||||||
|     runs-on: |     runs-on: ${{ matrix.os }} | ||||||
|     - ubuntu-latest |     strategy: | ||||||
|  |       matrix: | ||||||
|  |         go: [ stable ] | ||||||
|  |         os: [ ubuntu-latest-amd64, ubuntu-latest-arm64 ] | ||||||
|     steps: |     steps: | ||||||
|     - uses: actions/checkout@v4.2.2 |     - uses: actions/checkout@v4.2.2 | ||||||
|     - uses: actions/setup-go@v5.5.0 |     - uses: actions/setup-go@v5.5.0 | ||||||
|       with: |       with: | ||||||
|         go-version: stable |         go-version: ${{ matrix.go }} | ||||||
|     - env: |     - env: | ||||||
|         GOPROXY: ${{ vars.GOPROXY }} |         GOPROXY: ${{ vars.GOPROXY }} | ||||||
|       run: make test/unit |       run: make test/unit | ||||||
|   | |||||||
							
								
								
									
										27
									
								
								.gitea/workflows/golangci-lint.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								.gitea/workflows/golangci-lint.yaml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,27 @@ | |||||||
|  | name: Golang CI lint | ||||||
|  |  | ||||||
|  | on: | ||||||
|  |   pull_request: | ||||||
|  |     types: [ "opened", "reopened", "synchronize" ] | ||||||
|  |   push: | ||||||
|  |     branches: [ '**' ] | ||||||
|  |     tags-ignore: [ '**' ] | ||||||
|  |  | ||||||
|  | permissions: | ||||||
|  |   contents: read | ||||||
|  |  | ||||||
|  | jobs: | ||||||
|  |   golangci: | ||||||
|  |     runs-on: ${{ matrix.os }} | ||||||
|  |     strategy: | ||||||
|  |       matrix: | ||||||
|  |         go: [ stable ] | ||||||
|  |         os: [ ubuntu-latest-amd64, ubuntu-latest-arm64 ] | ||||||
|  |     steps: | ||||||
|  |     - uses: actions/checkout@v4.2.2 | ||||||
|  |     - uses: actions/setup-go@v5.5.0 | ||||||
|  |       with: | ||||||
|  |         go-version: ${{ matrix.go }} | ||||||
|  |     - uses: golangci/golangci-lint-action@v8.0.0 | ||||||
|  |       with: | ||||||
|  |         version: v2.1 | ||||||
| @@ -1,20 +1,18 @@ | |||||||
| name: Markdown linter | name: 'Lint Markdown files' | ||||||
|  |  | ||||||
| on: | on: | ||||||
|   pull_request: |   pull_request: | ||||||
|     types: [ "opened", "reopened", "synchronize" ] |     types: [ "opened", "reopened", "synchronize" ] | ||||||
|   push: |   push: | ||||||
|     branches: [ '**' ] |     branches: [ '*' ] | ||||||
|     tags-ignore: [ '**' ] |     tags-ignore: [ '*' ] | ||||||
|   workflow_dispatch: {} |  | ||||||
|  |  | ||||||
| jobs: | jobs: | ||||||
|   markdown-lint: |   markdown-lint: | ||||||
|     container: |  | ||||||
|       image: git.cryptic.systems/volker.raschek/markdownlint:0.45.0 |  | ||||||
|     runs-on: |     runs-on: | ||||||
|     - ubuntu-latest |     - ubuntu-latest | ||||||
|     steps: |     steps: | ||||||
|     - uses: actions/checkout@v4.2.2 |     - uses: actions/checkout@v4.2.2 | ||||||
|     - name: Lint Markdown files |     - uses: DavidAnson/markdownlint-cli2-action@v20.0.0 | ||||||
|       run: markdownlint --config .markdownlint.yaml . |       with: | ||||||
|  |         globs: '**/*.md' | ||||||
		Reference in New Issue
	
	Block a user