All Projects → natiginfo → action-detekt-all

natiginfo / action-detekt-all

Licence: Apache-2.0 license
Run detekt for all files

Programming Languages

python
139335 projects - #7 most used programming language
Dockerfile
14818 projects

Projects that are alternatives of or similar to action-detekt-all

DemoApp
An Android template project for fast development and test.
Stars: ✭ 33 (+32%)
Mutual labels:  detekt, github-actions
cibuildwheel
🎡 Build Python wheels for all the platforms on CI with minimal configuration.
Stars: ✭ 1,350 (+5300%)
Mutual labels:  github-actions
18-comic-finder
禁漫天堂Github Actions下载器🧘
Stars: ✭ 264 (+956%)
Mutual labels:  github-actions
github-action-ghr
GitHub Action to upload build artifacts to GitHub releases.
Stars: ✭ 47 (+88%)
Mutual labels:  github-actions
resource-translator
A GitHub Action that automatically creates machine-translated PRs of translation files. Supported file formats include, .ini, .po, .restext, .resx, .xliff .json.
Stars: ✭ 44 (+76%)
Mutual labels:  github-actions
compile-sketches
GitHub Actions action that checks whether Arduino sketches compile and produces a report of data from the compilations
Stars: ✭ 35 (+40%)
Mutual labels:  github-actions
juejin-actions
掘金每天自动签到 github actions 。组织了每周一起学习200行左右的【源码共读】活动,感兴趣可以加我微信 ruochuan12 参与。
Stars: ✭ 47 (+88%)
Mutual labels:  github-actions
githubsecrets
Manage your GitHub Actions secrets with a simple CLI
Stars: ✭ 41 (+64%)
Mutual labels:  github-actions
sentry-releases-action
A GitHub action that creates releases for Sentry.io.
Stars: ✭ 38 (+52%)
Mutual labels:  github-actions
poc-github-actions
Various proofs of concept examples using Github Actions 🤖
Stars: ✭ 103 (+312%)
Mutual labels:  github-actions
post-medium-action
This action is for posting markdown based posts to medium
Stars: ✭ 45 (+80%)
Mutual labels:  github-actions
code-coverage-action
GitHub Action that generates code coverage reports
Stars: ✭ 28 (+12%)
Mutual labels:  github-actions
github-release
Github Action to create, update, or add files to Github Releases
Stars: ✭ 61 (+144%)
Mutual labels:  github-actions
actions-suggest-related-links
A GitHub Action to suggest related or similar issues, documents, and links. Based on the power of NLP and fastText.
Stars: ✭ 23 (-8%)
Mutual labels:  github-actions
actions
Our Library of GitHub Actions
Stars: ✭ 49 (+96%)
Mutual labels:  github-actions
github-wiki-publish-action
GitHub Action that publishes the contents of a directory to your project's wiki
Stars: ✭ 75 (+200%)
Mutual labels:  github-actions
py-dependency-install
A GitHub Action that installs Python package dependencies from a user-defined requirements.txt file path with optional pip, setuptools, and wheel installs/updates
Stars: ✭ 23 (-8%)
Mutual labels:  github-actions
action-setup-kube-tools
Github Action that setup Kubernetes tools (kubectl, kustomize, helm, kubeconform, conftest, yq, rancher, tilt, skaffold) very fast and cache them on the runner. Please [✩Star] if you're using it!
Stars: ✭ 45 (+80%)
Mutual labels:  github-actions
action-homebrew-bump-formula
⚙️ A GitHub Action to easily bump Homebrew formula on new release
Stars: ✭ 68 (+172%)
Mutual labels:  github-actions
github-pr-diff-tree
🌲 This action provide a comment that displays the diff of the pull request in a tree format.
Stars: ✭ 31 (+24%)
Mutual labels:  github-actions

GitHub Action: Detekt All

GitHub Action for running detekt checks to enforce best practices. Detekt is a static code analysis tool for Kotlin.

Version of the action is aligned with detekt versions.

Example usage

name: detekt

on:
  push:
    branches: [ master ]

 jobs:
   detekt:
     runs-on: ubuntu-latest

     steps:
       - name: "checkout"
         uses: actions/checkout@v2

       - name: "detekt"
         uses: natiginfo/[email protected]

Usage with CLI parameters

name: detekt

on:
  push:
    branches: [ master ]

 jobs:
   detekt:
     runs-on: ubuntu-latest

     steps:
       - name: "checkout"
         uses: actions/checkout@v2

       - name: "detekt"
         uses: natiginfo/[email protected]
         with:
          args: --fail-fast --config detekt.yml

You can check available CLI parameters here

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].