diff options
author | Signal Linden <signal@lindenlab.com> | 2023-04-05 15:43:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-05 15:43:11 -0700 |
commit | 4042ed9701fcfa42c03fc285a757aa348f800e33 (patch) | |
tree | b665a22a2769d7b1f398359fbd8c9c2f06b24c75 | |
parent | f2a784f0d07ac8bedb4e84f8ce60bfbe513d7dfb (diff) | |
parent | 4619805d218cf1cb5a5fb9b32dc5dd4aa913a99a (diff) |
Merge pull request #152 from secondlife/SL-19541
SL-19541: Add basic coding standards check
-rw-r--r-- | .github/workflows/pre-commit.yaml | 18 | ||||
-rw-r--r-- | .pre-commit-config.yaml | 7 |
2 files changed, 21 insertions, 4 deletions
diff --git a/.github/workflows/pre-commit.yaml b/.github/workflows/pre-commit.yaml new file mode 100644 index 0000000000..17c0ace02f --- /dev/null +++ b/.github/workflows/pre-commit.yaml @@ -0,0 +1,18 @@ +name: pre-commit + +on: + pull_request: + push: + branches: [main, contribute] + tags: [v*] + + +jobs: + pre-commit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + with: + python-version: 3.x + - uses: pre-commit/action@v3.0.0 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6d296d7a24..fe7dfbac7a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,9 +1,8 @@ repos: - - repo: https://bitbucket.org/lindenlab/git-hooks.git - rev: v1.0.0-beta2 + - repo: https://github.com/secondlife/git-hooks.git + rev: v1.0.0 hooks: - id: opensource-license - - id: jira-issue - id: llsd - id: no-trigraphs - id: copyright @@ -11,7 +10,7 @@ repos: files: \.(cpp|c|h|py|glsl|cmake|txt)$ exclude: language.txt - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v2.5.0 + rev: v4.4.0 hooks: - id: check-xml - id: mixed-line-ending |