Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust badges, bump SQLAlchemy test version and add "workflow_dispatch" #396

Merged
merged 1 commit into from
Feb 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
---
name: test
name: Tests

on:
pull_request: ~
push:
branches:
- master
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
schedule:
- cron: '0 2 * * *'


jobs:
test:
name: "Test python-${{ matrix.python-version }}
sqla: ${{ matrix.sqla-version }}
name: "Python: ${{ matrix.python-version }}
SQLA: ${{ matrix.sqla-version }}
CrateDB: ${{ matrix.crate-version }}
on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
crate-version: [nightly]
os: [ubuntu-latest]
sqla-version: ['1.1.18', '1.2.19', '1.3.20']
sqla-version: ['1.1.18', '1.2.19', '1.3.23']
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]

steps:
Expand Down
37 changes: 25 additions & 12 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,42 @@
CrateDB Python Client
=====================

.. image:: https://dev.azure.com/cratedb/crate-python/_apis/build/status/crate.crate-python?branchName=master
:target: https://dev.azure.com/cratedb/crate-python/_build/latest?definitionId=2&branchName=master
:alt: Azure Pipeline
.. image:: https://github.com/crate/crate-python/workflows/Tests/badge.svg
:target: https://github.com/crate/crate-python/actions?workflow=Tests
:alt: Build status

.. image:: https://coveralls.io/repos/github/crate/crate-python/badge.svg?branch=master
:target: https://coveralls.io/github/crate/crate-python?branch=master
:alt: Coverage

.. image:: https://readthedocs.org/projects/crate-python/badge/
:target: https://crate.io/docs/python/
:alt: Build status (documentation)

.. image:: https://img.shields.io/pypi/v/crate.svg
:target: https://pypi.python.org/pypi/crate/
:alt: PyPI Version
:target: https://pypi.org/project/crate/
:alt: PyPI Version

.. image:: https://img.shields.io/pypi/pyversions/crate.svg
:target: https://pypi.python.org/pypi/crate/
:alt: Python Version
:target: https://pypi.org/project/crate/
:alt: Python Version

.. image:: https://img.shields.io/pypi/dw/crate.svg
:target: https://pypi.python.org/pypi/crate/
:target: https://pypi.org/project/crate/
:alt: PyPI Downloads

.. image:: https://img.shields.io/pypi/wheel/crate.svg
:target: https://pypi.python.org/pypi/crate/
:target: https://pypi.org/project/crate/
:alt: Wheel

.. image:: https://coveralls.io/repos/github/crate/crate-python/badge.svg?branch=master
:target: https://coveralls.io/github/crate/crate-python?branch=master
:alt: Coverage
.. image:: https://img.shields.io/pypi/status/crate.svg
:target: https://pypi.org/project/crate/
:alt: Status

.. image:: https://img.shields.io/pypi/l/crate.svg
:target: https://pypi.org/project/crate/
:alt: License


|

Expand Down