make migration #132
This file contains hidden or 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
| name: format | |
| on: | |
| push: | |
| jobs: | |
| update: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: cachix/install-nix-action@v20 | |
| with: | |
| github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: nixfmt | |
| run: "nix develop --command nixfmt flake.nix" | |
| - name: black | |
| run: "nix develop --command black --safe ." | |
| - name: commit and push | |
| run: | | |
| if git diff --exit-code; then | |
| echo 'no changes!' | |
| else | |
| git config user.name 'GitHub Actions' | |
| git config user.email 'format+github-actions@nyiyui.ca' | |
| git add . | |
| git commit -am "format" | |
| git push | |
| fi |