Skip to content

installation: require invenio-app 1.4.0 in tests #601

installation: require invenio-app 1.4.0 in tests

installation: require invenio-app 1.4.0 in tests #601

Workflow file for this run

name: CI
on:
push:
branches:
- master
- "feature/*"
- "maint-**"
pull_request:
branches:
- master
- "maint-**"
- "feature/**"
schedule:
# * is a special character in YAML so you have to quote this string
- cron: "0 3 * * 6"
workflow_dispatch:
inputs:
reason:
description: "Reason"
required: false
default: "Manual trigger"
jobs:
Tests:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
requirements-level: [pypi]
cache-service: [redis]
db-service: [postgresql14, mysql8]
include:
- db-service: postgresql14
DB_EXTRAS: "postgresql"
- db-service: mysql8
DB_EXTRAS: "mysql"
env:
CACHE: ${{ matrix.cache-service }}
DB: ${{ matrix.db-service }}
EXTRAS: tests,admin,${{ matrix.DB_EXTRAS }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: setup.cfg
- name: Install dependencies
run: |
pip install ".[$EXTRAS]"
pip freeze
docker --version
docker-compose --version
- name: Run tests
run: |
./run-tests.sh