additional changes for sqlalchemy 2.0 #687
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: Device Build Status | |
on: | |
push: | |
paths: | |
- 'device/**' | |
jobs: | |
device-build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: device/ | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install Python dependencies | |
run: | | |
pip install pipenv | |
pipenv install --dev | |
- run: cp .env.example .env | |
- name: Run Python lints | |
run: pipenv run fd_device lint --check | |
- name: Run Python tests | |
run: pipenv run fd_device test --coverage | |
#- name: Run Python docstrings | |
# run: pipenv run fd_device docstring |