Bump wtforms from 3.0.1 to 3.2.1 #296
This file contains 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: "PR - Test Docker Build" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
# This workflow builds a docker image for every pull request, to | |
# confirm that the changes will still at least build even if the | |
# OP has not tried it themselves or configured their fork to use | |
# the included repos | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- | |
uses: actions/checkout@v4 | |
- | |
name: Setup Docker buildx | |
uses: docker/setup-buildx-action@v3 | |
# Build Docker image with Buildx | |
# https://github.com/docker/build-push-action | |
- | |
name: Build Docker image | |
id: build | |
uses: docker/build-push-action@v5 | |
with: | |
push: false | |
context: . | |
platforms: linux/amd64,linux/arm64,linux/arm/v7 | |
tags: automatic-ripping-machine:pr${{ github.event.number }} |