Skip to content

Commit

Permalink
Merge pull request #40 from Failte327/patch-1
Browse files Browse the repository at this point in the history
Fix issue #39
  • Loading branch information
Veinar authored Nov 26, 2024
2 parents aba41d0 + 5d77ab1 commit 013b293
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,24 @@ jobs:
- name: Run Bandit
run: bandit -v -r envcloak/

format:
name: Black Formatter
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'

- name: Install Dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -e .[dev]
- name: Run the Black Formatter
run: black --check envcloak/

0 comments on commit 013b293

Please sign in to comment.