Test #442
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: Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
schedule: | |
# cron every week on monday | |
- cron: "0 0 * * 1" | |
jobs: | |
test: | |
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" | |
- name: python3.9 | |
python_version: "3.9" | |
- name: python3.8 | |
python_version: "3.8" | |
- name: python3.7 | |
python_version: "3.7" | |
fail-fast: true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- 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@v6 | |
with: | |
push: false | |
tags: tiangolo/uwsgi-nginx:${{ matrix.image.name }} | |
context: ./docker-images/ | |
file: ./docker-images/${{ env.DOCKERFILE_NAME }}.dockerfile | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install Dependencies | |
run: python -m pip install docker pytest | |
- name: Test Image | |
run: bash scripts/test.sh | |
env: | |
NAME: ${{ matrix.image.name }} | |
PYTHON_VERSION: ${{ matrix.image.python_version }} | |
SLEEP_TIME: "5" | |
check: | |
if: always() | |
needs: | |
- test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Decide whether the needed jobs succeeded or failed | |
uses: re-actors/alls-green@release/v1 | |
with: | |
jobs: ${{ toJSON(needs) }} |