Skip to content

Commit

Permalink
Add dummy CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
thegitofdaniel committed Oct 16, 2023
1 parent 7390953 commit d7c6dcd
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/check-code-quality.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: check-code-quality

on:
pull_request:
push:
branches:
- 'main'
- 'feature/**'

jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: pre-commit/[email protected]

# repos:
# - repo: https://github.com/pre-commit/pre-commit-hooks
# rev: v2.3.0
# hooks:
# - id: check-ast
# - id: check-json
# - id: check-toml
# - id: check-xml
# - id: check-yaml
# - id: check-builtin-literals
# - id: check-case-conflict
# - id: check-docstring-first
# - id: detect-private-key
# - id: double-quote-string-fixer
# - id: end-of-file-fixer
# - id: name-tests-test
# - id: pretty-format-json
# - id: trailing-whitespace

# - repo: https://github.com/astral-sh/ruff-pre-commit
# rev: v0.0.284
# hooks:
# - id: ruff

0 comments on commit d7c6dcd

Please sign in to comment.