Prepare for 2.0 release #6
Workflow file for this run
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: CI | |
on: [push, pull_request] | |
env: | |
FORCE_COLOR: 1 | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
timeout-minutes: 90 | |
strategy: | |
matrix: | |
python: ["3.8"] | |
steps: | |
- uses: actions/[email protected] | |
- name: "Install dependencies" | |
run: sudo apt-get -y install graphviz | |
- name: Cache python dependencies | |
id: cache-pip | |
uses: actions/[email protected] | |
with: | |
path: ~/.cache/pip | |
key: pip-${{ matrix.python }}-tests-${{ hashFiles('**/setup.json') }} | |
restore-keys: pip-${{ matrix.python }}-tests- | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Make sure virtualevn>20 is installed, which will yield newer pip and possibility to pin pip version. | |
run: pip install virtualenv>20 | |
- name: Install Tox | |
run: pip install tox | |
- name: Run pre-commit in Tox | |
run: tox -e pre-commit | |
test: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
python: ["3.8", "3.9", "3.10"] | |
steps: | |
- uses: actions/[email protected] | |
- name: "Install dependencies" | |
run: sudo apt-get -y install graphviz | |
- uses: actions/[email protected] | |
- name: Cache python dependencies | |
id: cache-pip | |
uses: actions/[email protected] | |
with: | |
path: ~/.cache/pip | |
key: pip-${{ matrix.python }}-tests-${{ hashFiles('**/setup.json') }} | |
restore-keys: pip-${{ matrix.python }}-tests- | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Make sure virtualevn>20 is installed, which will yield newer pip and possibility to pin pip version. | |
run: pip install virtualenv>20 | |
- name: Install Tox | |
run: pip install tox | |
- name: "Test with tox" | |
run: | | |
tox -e py${{ matrix.python }} -- tests/ --cov=./sqlalchemy_schemadisplay --cov-append --cov-report=xml --cov-report=term-missing |