Skip to content

Replace dateutil.tz with ZoneInfo and tzlocal for better cross-platfo… #57

Replace dateutil.tz with ZoneInfo and tzlocal for better cross-platfo…

Replace dateutil.tz with ZoneInfo and tzlocal for better cross-platfo… #57

Workflow file for this run

name: Lint, build, and test package
on:
pull_request:
push:
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip install --upgrade
pip
.[dev]
- run: docformatter --check --diff src tests
- run: black --diff --check src/ tests/
- run: ruff check --output-format=github src/ tests/
- run: mypy src/ tests/
- run: python -m build
- uses: actions/upload-artifact@v3
with:
name: wheel-${{ matrix.python-version }}
path: dist/*
retention-days: 1
test:
needs: [build]
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
python-version: ["3.7", "3.8", "3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Download wheels for Python3.7
if: ${{ '3.7' == matrix.python-version }}
uses: actions/download-artifact@v3
with:
name: wheel-3.8
path: dist/
- name: Download wheels for Built Python Versions
if: ${{ '3.7' != matrix.python-version }}
uses: actions/download-artifact@v3
with:
name: wheel-${{ matrix.python-version }}
path: dist/
- run: pip install --upgrade
pip
dist/clp_logging-*.whl
-r requirements-test.txt
- run: python -m unittest -fv