Skip to content

Merge branch 'main' of github.com:inoue0426/scBiGCN #2

Merge branch 'main' of github.com:inoue0426/scBiGCN

Merge branch 'main' of github.com:inoue0426/scBiGCN #2

Workflow file for this run

name: Python Formatting
on: [push]
jobs:
format-code:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install black
run: python -m pip install black
- name: Format code
run: black .
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Apply auto-formatting
branch: ${{ github.head_ref }}