Skip to content

Emoji changes

Emoji changes #26

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install venv and dependencies
run: ./setup.sh
- name: Tests
run: ./run-tests.sh