Skip to content

Make sure that nested dotted keys are resolved #148

Make sure that nested dotted keys are resolved

Make sure that nested dotted keys are resolved #148

Workflow file for this run

name: Test building PyPI package
on: push
jobs:
build-n-publish:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: ${{matrix.python-version}}
- name: Install pypa/build
run: |
python -m pip install --upgrade pip
python -m pip install build
- name: Build binary wheel and source tarbal
run: python -m build --sdist --wheel --outdir dist/ .