Skip to content

chore(ccore-1335): update spanner library and add json field type (#4) #4

chore(ccore-1335): update spanner library and add json field type (#4)

chore(ccore-1335): update spanner library and add json field type (#4) #4

Workflow file for this run

name: Test Package
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: pip install -e .[tests]
- name: Test
run: python setup.py test
- name: Format
run: black --check .