Skip to content

馃懛 Migrate automatic labels to Latest Changes (#436) #640

馃懛 Migrate automatic labels to Latest Changes (#436)

馃懛 Migrate automatic labels to Latest Changes (#436) #640

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
schedule:
# cron every week on monday
- cron: "0 0 * * 1"
permissions: {}
jobs:
test:
permissions:
contents: read
strategy:
matrix:
image:
- name: latest
python_version: "3.12"
- name: python3.12
python_version: "3.12"
- name: python3.11
python_version: "3.11"
- name: python3.10
python_version: "3.10"
fail-fast: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Set Dockerfile name
if: matrix.image.name != 'latest'
run: echo "DOCKERFILE_NAME=${{ matrix.image.name }}" >> $GITHUB_ENV
- name: Set Dockerfile name latest
if: matrix.image.name == 'latest'
run: echo "DOCKERFILE_NAME=python${{ matrix.image.python_version }}" >> $GITHUB_ENV
- name: Build
uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0
with:
push: false
tags: tiangolo/uwsgi-nginx-flask:${{ matrix.image.name }}
context: ./docker-images/
file: ./docker-images/${{ env.DOCKERFILE_NAME }}.dockerfile
- name: Set up Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.10"
- name: Install Dependencies
run: python -m pip install docker pytest
- name: Test Image
run: pytest tests
env:
NAME: ${{ matrix.image.name }}
PYTHON_VERSION: ${{ matrix.image.python_version }}
check:
if: always()
needs:
- test
runs-on: ubuntu-latest
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
with:
jobs: ${{ toJSON(needs) }}