ci: use docker compose v2 #2264
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 | |
| on: | |
| push: | |
| branches-ignore: | |
| - renovate/** | |
| - deepsource-* | |
| pull_request: {} | |
| merge_group: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - uses: trim21/setup-poetry@dist/v2 | |
| - run: poetry build | |
| - name: Install twine | |
| run: pip install twine | |
| - name: Check Files | |
| run: twine check dist/* |