Skip to content

Add test to handle nonexistent fgdb. #11

Add test to handle nonexistent fgdb.

Add test to handle nonexistent fgdb. #11

Workflow file for this run

name: Python Style Checker
on: [push, pull_request]
jobs:
style-check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
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 black
- name: Lint with Black
run: black --check .
continue-on-error: true