Bump black from 25.1.0 to 26.3.1 in /requirements #5
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: Build pull request | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| container: quay.io/hypernode/deploy:latest-php8.4-node22 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Add repository to git safe directories | |
| run: git config --global --add safe.directory $GITHUB_WORKSPACE | |
| # The prepare:ssh task fails on an empty ssh-agent, but building needs no | |
| # server access, so satisfy it with a key that grants access to nothing. | |
| - name: Generate a throwaway SSH key for the build | |
| run: mkdir -p ~/.ssh && ssh-keygen -t ed25519 -N '' -q -f ~/.ssh/id_ed25519 | |
| - run: hypernode-deploy build -vvv | |
| - name: archive build artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: deployment-build | |
| path: build/build.tgz | |
| retention-days: 5 |