Fix author and licence of the onchain framework (#4) #20
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
# Github workflow to check python code | |
name: Python | |
on: [push] | |
jobs: | |
# https://black.readthedocs.io/en/stable/integrations/github_actions.html | |
formatting-check: | |
name: Formatting Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: psf/black@stable |