feat(device): updates spinner in device commands #139
Workflow file for this run
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: Python Compatibility Check 🐍 | |
on: [ push ] | |
jobs: | |
python-compatibility: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: [ '3.8', '3.9', '3.10', '3.11' ] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install the CLI | |
run: | | |
export LC_ALL=C.UTF-8 | |
export LANG=C.UTF-8 | |
python setup.py install | |
- name: Check compatibility | |
run: | | |
rio --help |