Skip to content

Commit

Permalink
Merge pull request #1 from greyli/add-flask-mailman
Browse files Browse the repository at this point in the history
  • Loading branch information
greyli authored Nov 26, 2023
2 parents 7770235 + 98a1291 commit b27337d
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
32 changes: 32 additions & 0 deletions .github/workflows/flask-mailman.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Test latest Flask-Mailman with latest Flask

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

workflow_dispatch:

jobs:
test:
strategy:
matrix:
python-versions: ['3.12']
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-versions }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flask-mailman flask
- name: Test
run:
python -c "from flask_mailman import Mail"
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,14 @@
# flask-extension-status
# Flask Extension Status

## About this project

## What can we do?

## Extension health dashboard

| Extension | Latest PyPI version | Build with Flask 3.x |
| --------- | -------------------- | ------------------- |
| [Flask-Mailman](https://github.com/waynerv/flask-mailman) | ![PyPI - Version](https://img.shields.io/pypi/v/flask-mailman)
| ![Test stauts with latest Flask](https://github.com/greyli/flask-extension-status/actions/workflows/flask-mailman.yml/badge.svg) |

## Unmaintained extension and alternatives

0 comments on commit b27337d

Please sign in to comment.