Skip the uploading process for packages which have been already uploaded #3
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: git hooks | |
| on: | |
| push: | |
| branches: | |
| - "master" | |
| jobs: | |
| hooks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Step -- 1. | |
| uses: actions/checkout@v4 | |
| - name: Step -- 2. | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.x" | |
| - name: Step -- 3. | |
| run: pip3 install --upgrade pip && pip3 install --no-cache-dir --upgrade 'poetry>=2.0.0' | |
| - name: Step -- 4. | |
| run: make lint |