Skip to content

ci: adds workflow to check Python version compatibility #3

ci: adds workflow to check Python version compatibility

ci: adds workflow to check Python version compatibility #3

name: Python Compatibility
on: [ push ]
jobs:
py-compatibility:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [ '3.7' ]
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
export LC_ALL=C.UTF-8
export LANG=C.UTF-8
python setup.py install
- name: Check compatibility
run: |
rio --help