Skip to content

Commit b32bf2d

Browse files
committed
Add GitHub Actions Workflows + Renovate configuration
Via oapi-codegen/runtime@98a1845.
1 parent bf3cb7f commit b32bf2d

File tree

6 files changed

+112
-0
lines changed

6 files changed

+112
-0
lines changed

.github/workflows/ci.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Build project
2+
on: [ push, pull_request ]
3+
jobs:
4+
build:
5+
name: Build
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Check out source code
9+
uses: actions/checkout@v3
10+
11+
- name: Set up Go
12+
uses: actions/setup-go@v3
13+
with:
14+
go-version-file: 'go.mod'
15+
16+
- name: Test
17+
run: make test

.github/workflows/generate.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Ensure generated files are up-to-date
2+
on: [ push, pull_request ]
3+
jobs:
4+
build:
5+
name: Build
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Check out source code
9+
uses: actions/checkout@v3
10+
11+
- name: Set up Go
12+
uses: actions/setup-go@v3
13+
with:
14+
go-version-file: 'go.mod'
15+
16+
- name: Run `make generate`
17+
run: make generate
18+
19+
- name: Check for no untracked files
20+
run: git status && git diff-index --quiet HEAD --

.github/workflows/lint.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Lint project
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
name: Build
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Check out source code
9+
uses: actions/checkout@v3
10+
11+
- name: Set up Go
12+
uses: actions/setup-go@v3
13+
with:
14+
go-version-file: 'go.mod'
15+
16+
- name: Run `make lint-ci`
17+
run: make lint-ci

.github/workflows/tidy.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Ensure `go mod tidy` has been run
2+
on: [ push, pull_request ]
3+
jobs:
4+
build:
5+
name: Build
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Check out source code
9+
uses: actions/checkout@v3
10+
11+
- name: Set up Go
12+
uses: actions/setup-go@v3
13+
with:
14+
go-version-file: 'go.mod'
15+
16+
- name: Install `tidied`
17+
run: go install gitlab.com/jamietanna/tidied@latest
18+
19+
- name: Check for no untracked files
20+
run: tidied -verbose

Makefile

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
GOBASE=$(shell pwd)
2+
GOBIN=$(GOBASE)/bin
3+
4+
help:
5+
@echo "This is a helper makefile for oapi-codegen"
6+
@echo "Targets:"
7+
@echo " generate: regenerate all generated files"
8+
@echo " test: run all tests"
9+
@echo " gin_example generate gin example server code"
10+
@echo " tidy tidy go mod"
11+
12+
$(GOBIN)/golangci-lint:
13+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOBIN) v1.54.0
14+
15+
.PHONY: tools
16+
tools: $(GOBIN)/golangci-lint
17+
18+
lint: tools
19+
$(GOBIN)/golangci-lint run ./...
20+
21+
lint-ci: tools
22+
$(GOBIN)/golangci-lint run ./... --out-format=github-actions --timeout=5m
23+
24+
generate:
25+
go generate ./...
26+
27+
test:
28+
go test -cover ./...
29+
30+
tidy:
31+
@echo "tidy..."
32+
go mod tidy

renovate.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"local>oapi-codegen/renovate-config"
5+
]
6+
}

0 commit comments

Comments
 (0)