Skip to content

Added more unittests for custom format, added script to use the service using api, updated readme #61

Added more unittests for custom format, added script to use the service using api, updated readme

Added more unittests for custom format, added script to use the service using api, updated readme #61

name: GitHub Actions CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
# python -m pip install --upgrade setuptools pip
python -m pip install --upgrade wheel pip
pip install -U -r requirements.txt
pip install -U -r dev-requirements.txt
- name: Test with pytest
run: |
py.test
- name: Upload coverage data to coveralls.io
run: coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}