Skip to content

eeprom: add more eeprom_mock tests to verify EEPROM mirroring works c… #75

eeprom: add more eeprom_mock tests to verify EEPROM mirroring works c…

eeprom: add more eeprom_mock tests to verify EEPROM mirroring works c… #75

name: Python syntax tests
# check that there is no import issues with tool suite
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
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 dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install setuptools wheel ruamel.yaml
- name: Check style
run: |
python setup.py check_style
- name: Install package
run: |
python setup.py install
- name: Run tests
run: |
python pyftdi/tests/toolsimport.py