Skip to content

Remove python 2 tests from CI #1

Remove python 2 tests from CI

Remove python 2 tests from CI #1

Workflow file for this run

name: Continuous Integration
# Trigger the workflow on push or pull request on the repo (BC_API_KEY cannot be accessible to forked repo)
on: [push]
jobs:
test:
runs-on: ubuntu-latest
name: Python 3.x Tests
steps:
- uses: actions/checkout@v1
- name: Setup python
uses: actions/setup-python@v1
with:
python-version: 3.x
architecture: x64
- name: Install dependencies
run: python setup.py develop
- name: Run test
run: python test_blockcypher.py
env:
BC_API_KEY: ${{ secrets.BC_API_KEY }}