Skip to content

Commit a7cac28

Browse files
author
Fabien Coelho
committed
FlaskTester wip
1 parent 0c32d17 commit a7cac28

File tree

8 files changed

+750
-0
lines changed

8 files changed

+750
-0
lines changed

.github/workflows/package.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: FlaskTester Package
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
python-version: ["3.10", "3.11", "3.12"]
14+
steps:
15+
# Setup
16+
- uses: actions/checkout@v4
17+
- name: Set up Python ${{ matrix.python-version }}
18+
uses: actions/setup-python@v5
19+
with:
20+
python-version: ${{ matrix.python-version }}
21+
# Dependencies
22+
- name: Install Python Dependencies
23+
run: |
24+
pip install -U pip
25+
pip install -e .[dev,doc]
26+
# Checks
27+
- name: Check with pyright
28+
run: make VENV= check.pyright
29+
- name: Check with ruff
30+
run: make VENV= check.ruff
31+
- name: Check with pytest
32+
run: make VENV= check.pytest
33+
# - name: Check with coverage
34+
# run: make VENV= check.coverage
35+
- name: Check with pymarkdown
36+
run: make VENV= check.docs

0 commit comments

Comments
 (0)