Skip to content

Bump: PyXDC package to 0.2.0 version #12

Bump: PyXDC package to 0.2.0 version

Bump: PyXDC package to 0.2.0 version #12

Workflow file for this run

# This workflow will install eth-wallet dependencies, run tests and lint with a variety of Python versions
name: GitHub CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
python:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[tests,docs]
- name: Test with pytest
run: pytest