Merge branch 'master' into index-sort-field #1141
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: guillotina | |
on: [push] | |
jobs: | |
# Job to run pre-checks | |
pre-checks: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.8, 3.9, '3.10', '3.11'] | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install package | |
run: | | |
pip install $(grep -P 'flake8|black|isort' contrib-requirements.txt) | |
- name: Run pre-checks | |
run: | | |
flake8 guillotina --config=setup.cfg | |
isort -c -rc guillotina/ | |
black --check --verbose guillotina | |
# Job to run tests | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.8, 3.9, '3.10', '3.11'] | |
database: ["DUMMY", "postgres", "cockroachdb"] | |
db_schema: ["custom", "public"] | |
exclude: | |
- database: "DUMMY" | |
db_schema: "custom" | |
- database: "cockroachdb" | |
db_schema: "custom" | |
# Set environment variables | |
env: | |
DATABASE: ${{ matrix.database }} | |
DB_SCHEMA: ${{ matrix.db_schema }} | |
MEMCACHED: "localhost:11211" | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install the package | |
run: | | |
pip install $(grep "Cython" requirements.txt) | |
pip install -r requirements.txt | |
pip install -r contrib-requirements.txt | |
pip install -e .[test] | |
pip install -e .[testdata] | |
- name: Start memcached image | |
uses: niden/actions-memcached@v7 | |
- name: Check mypy | |
run: | | |
mypy guillotina/ | |
- name: Run tests | |
run: | | |
pytest -rfE --reruns 2 --cov=guillotina -s --tb=native -v --cov-report xml --cov-append guillotina | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
file: ./coverage.xml |