Skip to content

Add support for raw event codes in mappings #21

Add support for raw event codes in mappings

Add support for raw event codes in mappings #21

Workflow file for this run

---
name: Unit tests
"on": [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install -e .[test]
- name: Lint with flake8
run: |
tox -e pep8
- name: Run unit tests
run: |
tox -e py37