Skip to content

Fix: Trailing empty cell in date column forces no serial_date_to_datetime #1923

Fix: Trailing empty cell in date column forces no serial_date_to_datetime

Fix: Trailing empty cell in date column forces no serial_date_to_datetime #1923

Workflow file for this run

name: lint
on:
pull_request:
branches:
- master
workflow_dispatch:
jobs:
run_lint:
name: Runs mypy, flake and bandit
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make dev
- name: Run lint
run: make lint
matrix_job_required_check:
name: Runs mypy, flake and bandit
needs: run_lint
runs-on: ubuntu-latest
if: always()
steps:
- name: Check matrix job results
if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
run: |
echo "One or more matrix job tests failed or were cancelled. You may need to re-run them." && exit 1