Skip to content

chore(deps): bump python-frontmatter from 1.0.0 to 1.0.1 #239

chore(deps): bump python-frontmatter from 1.0.0 to 1.0.1

chore(deps): bump python-frontmatter from 1.0.0 to 1.0.1 #239

Workflow file for this run

name: flask-filealchemy
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Set up poetry
run: |
python -m pip install --upgrade poetry
poetry run pip install --upgrade pip setuptools
- name: Install dependencies
run: poetry install
- name: Lint with flake8
run: make lint-flake8
- name: Lint with black
run: make lint-black
- name: Test with pytest
run: make test