Skip to content

Add more extensions

Add more extensions #1

name: build
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-marshmallow flask
- name: Test initialization
run:
python -c "from flask import Flask; app = Flask(__name__); from flask_marshmallow import Marshmallow; Marshmallow(app)"