Skip to content

Commit f986c0a

Browse files
committed
Merge remote-tracking branch 'origin/main' into ci/gcp-github-actions
2 parents cd78527 + e3a3d87 commit f986c0a

80 files changed

Lines changed: 3016 additions & 650 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.circleci/config.yml

Lines changed: 0 additions & 191 deletions
This file was deleted.

.github/workflows/pre-commit.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Pre-commit
2+
3+
on:
4+
push:
5+
6+
permissions:
7+
contents: read
8+
9+
jobs:
10+
pre-commit:
11+
name: Pre-commit
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
16+
17+
- name: Set up mise
18+
uses: jdx/mise-action@5228313ee0372e111a38da051671ca30fc5a96db # v3
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
22+
- name: Install pre-commit
23+
run: pip3 install pre-commit
24+
25+
- name: Install goimports
26+
run: go install golang.org/x/tools/cmd/goimports@latest
27+
28+
- name: Run pre-commit
29+
run: pre-commit run --all-files

CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @denis256 @yhakbar @thisguycodes @james00012
1+
* @denis256 @yhakbar @james00012

0 commit comments

Comments
 (0)