diff options
author | Bennett Goble <signal@lindenlab.com> | 2023-04-04 12:16:21 -0700 |
---|---|---|
committer | Bennett Goble <signal@lindenlab.com> | 2023-04-04 12:47:19 -0700 |
commit | 4619805d218cf1cb5a5fb9b32dc5dd4aa913a99a (patch) | |
tree | b665a22a2769d7b1f398359fbd8c9c2f06b24c75 /.github | |
parent | f2a784f0d07ac8bedb4e84f8ce60bfbe513d7dfb (diff) |
SL-19541: Add basic coding standards check
Run Linden coding standard git-hooks in a basic Github actions workflow.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/pre-commit.yaml | 18 |
1 files changed, 18 insertions, 0 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 |