Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into dev-revisit-calls-api
Browse files Browse the repository at this point in the history
  • Loading branch information
montyly committed Oct 2, 2024
2 parents d9f114d + 3befc96 commit 162bf0f
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 1 deletion.
41 changes: 41 additions & 0 deletions .github/workflows/black_auto.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
name: Run black (auto)

defaults:
run:
# To load bashrc
shell: bash -ieo pipefail {0}

on:
pull_request:
branches: [master, dev]
paths:
- "**/*.py"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
name: Black
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v4

- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8

- name: Install Python dependencies
run: pip install .[dev]

- name: Run linters
uses: wearerequired/lint-action@v2
with:
auto_fix: true
black: true
black_auto_fix: true
2 changes: 1 addition & 1 deletion FUNDING.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
},
"drips": {
"ethereum": {
"ownedBy": "0x5e2BA02F62bD4efa939e3B80955bBC21d015DbA0"
"ownedBy": "0xc44F30Be3eBBEfdDBB5a85168710b4f0e18f4Ff0"
}
}
}

0 comments on commit 162bf0f

Please sign in to comment.