forked from noirbizarre/flask-fs
-
Notifications
You must be signed in to change notification settings - Fork 3
41 lines (39 loc) · 1.14 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
name: Flask-FS2 CI
on: [push, pull_request]
jobs:
ci:
name: Test with different versions of Python 🐍
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.9", "pypy3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.version }}
cache: pip
- name: Upgrade pip 📦
run: >-
python -m pip install --upgrade pip setuptools
- name: Install packages 📦
run: >-
python -m pip install .[ci]
- name: Install flask-mongoengine from git 📦
run: >-
python -m pip install
"flask-mongoengine @ git+https://github.com/idoshr/flask-mongoengine.git@json_encoder"
- name: Launch dockers 🐳
run: >-
docker-compose up -d
- name: Run tests 🧪
run: >-
inv cover qa
- name: Show coverage report 📊
run: >-
coveralls --rcfile=coverage.rc
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}