convert rows by passing convert_keys to api-gateway instead of converting in python #121
This file contains hidden or 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: SeaTable Python SDK | |
| on: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: "3.9" | |
| - name: pip install | |
| run: | | |
| pip install --upgrade pip | |
| pip install requests | |
| pip install ply | |
| pip install python_dateutil | |
| pip install python-socketio | |
| - name: run dateutils test | |
| run: | | |
| cd $GITHUB_WORKSPACE | |
| python3 ./tests/dateutils_test.py |