Update setup.py #118
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Git Quality Check | |
on: [push] | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Git Quality Check | |
id: git-quality-check | |
uses: gcattan/[email protected] | |
with: | |
badWords: WIP, todo | |
mainBranches: origin/master, origin/develop, origin/main | |
- name: Check outputs | |
run: | | |
test "${{ steps.git-quality-check.outputs.score }}" != "" | |
- name: Create badge | |
uses: RubbaBoy/[email protected] | |
with: | |
NAME: score | |
LABEL: 'Git Quality Score' | |
STATUS: ${{ steps.git-quality-check.outputs.score }} | |
COLOR: 00EEFF | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |