Skip to content

Commit

Permalink
Added GitHub workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
coltonbh committed Sep 7, 2024
1 parent 167503d commit 08b485c
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/basic-code-quanlity.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Basic Code Quality

on: [push]

env:
POETRY_VIRTUALENVS_CREATE: false

jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install ruff
run: pip install ruff
- name: ruff
run: ruff check .

mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install poetry
run: pip install poetry
- name: Install repo
run: poetry install --no-interaction --no-ansi
- name: mypy
run: mypy .

detect-secrets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install detect secrets
run: pip install detect-secrets
- name: Look for secrets
# Ignore jwt.txt; the token is supposed to be there.
run: git ls-files -z | xargs -0 detect-secrets-hook -v

typos:
name: "spell check"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: crate-ci/typos@master
with:
files: .

0 comments on commit 08b485c

Please sign in to comment.