chore: Support RTL #241
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: customer themes | |
on: | |
push: | |
branches: ['juniper/tahoe'] | |
pull_request_target: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
branches: ['juniper/tahoe'] | |
jobs: | |
test: | |
runs-on: ubuntu-18.04 | |
strategy: | |
matrix: | |
python-version: [3.8] | |
tox-env: | |
- verify | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install tox | |
- name: Test with tox | |
run: tox -e ${{ matrix.tox-env }} |