Skip to content

Commit

Permalink
set up CI (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
czarcas7ic authored and PaddyMc committed Aug 19, 2024
1 parent 5bd76b0 commit 4e0fc75
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
pull_request:
push:
branches:
- v0.38.x
- osmo/v0.38.x

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-generated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name: Check generated code
on:
pull_request:
branches:
- v0.38.x
- osmo/v0.38.x

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
push:
branches:
- v0.38.x
- osmo/v0.38.x

jobs:
check:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: e2e
# Runs the CI end-to-end test network on all pushes to v0.38.x
# and every pull request, but only if any Go files have been changed.
on:
workflow_dispatch: # allow running workflow manually
workflow_dispatch: # allow running workflow manually
pull_request:
push:
branches:
- v0.38.x
- osmo/v0.38.x

jobs:
e2e-test:
Expand All @@ -15,7 +15,7 @@ jobs:
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.21'
go-version: "1.21"
- uses: actions/checkout@v4
- uses: technote-space/get-diff-action@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/govulncheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
pull_request:
push:
branches:
- v0.38.x
- osmo/v0.38.x

jobs:
govulncheck:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
pull_request:
push:
branches:
- v0.38.x
- osmo/v0.38.x
jobs:
golangci:
name: golangci-lint
Expand All @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
go-version: "1.21"
- uses: technote-space/get-diff-action@v6
with:
PATTERNS: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/markdown-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ name: Markdown Linter
on:
push:
branches:
- v0.38.x
- osmo/v0.38.x
paths:
- "**.md"
- "**.yml"
- "**.yaml"
pull_request:
branches:
- v0.38.x
- osmo/v0.38.x
paths:
- "**.md"
- "**.yml"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/proto-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: Protobuf Lint
on:
pull_request:
paths:
- 'proto/**'
- "proto/**"
push:
branches:
- v0.38.x
- osmo/v0.38.x
paths:
- 'proto/**'
- "proto/**"

jobs:
lint:
Expand All @@ -18,4 +18,4 @@ jobs:
- uses: bufbuild/buf-setup-action@v1.36.0
- uses: bufbuild/buf-lint-action@v1
with:
input: 'proto'
input: "proto"
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
paths:
- "**.go"
branches:
- v0.38.x
- osmo/v0.38.x

jobs:
tests:
Expand Down

0 comments on commit 4e0fc75

Please sign in to comment.