chore: Bump googleapis/release-please-action from 4 to 5 in the github-actions-all group #3
Workflow file for this run
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: Image | |
| # Проверяет собранный образ, а не исходники. Часть поломок видна только в | |
| # боевой установке: сиды тянут faker из группы dev, которой в образе нет, | |
| # и со статическим импортом такой образ не поднялся бы вовсе. | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| jobs: | |
| smoke: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: docker/setup-buildx-action@v4 | |
| - name: Build and smoke-test the image | |
| run: make smoke-test |