This repository was archived by the owner on Apr 23, 2026. It is now read-only.
Add archive info #76
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: zpretty | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: [3.8] | |
| steps: | |
| # git checkout | |
| - uses: actions/checkout@v2 | |
| # python setup | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v1 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| # install zpretty | |
| - name: install zpretty | |
| run: pip install -c constraints.txt zpretty | |
| # run zpretty | |
| - name: run zpretty | |
| run: find eea/ -name *.zcml | xargs zpretty -i | |
| # run git diff | |
| - name: run git diff | |
| run: git diff --exit-code |