Skip to content

Bump starlette from 0.38.2 to 0.40.0 #5

Bump starlette from 0.38.2 to 0.40.0

Bump starlette from 0.38.2 to 0.40.0 #5

Workflow file for this run

name: CI
on:
pull_request: # any pull request
push:
branches:
- master
defaults:
run:
shell: bash
jobs:
python-checks:
strategy:
matrix:
python-version: ['3.10', 3.11, 3.12]
uses: finleyfamily/workflows/.github/workflows/python.checks.yml@master
with:
node-version: '20'
poetry-plugins: poetry-dynamic-versioning[plugin]
python-version: ${{ matrix.python-version }}
python-build:
uses: finleyfamily/workflows/.github/workflows/python.build.yml@master
with:
poetry-plugins: poetry-dynamic-versioning[plugin]
spellcheck:
uses: finleyfamily/workflows/.github/workflows/spellcheck.yml@master
with:
node-version: '20'
publish-test-pypi:
name: ⤴️ Publish 📦 To Test PyPI
if: github.event_name == 'push' && github.ref_name == 'master'
needs:
- python-checks
- python-build
- spellcheck
runs-on: ubuntu-latest
environment:
name: testpypi
url: https://test.pypi.org/project/${{ github.event.repository.name }}
permissions:
id-token: write
steps:
- name: Download Distribution Artifact
uses: actions/download-artifact@v4
with:
name: pypi-dist
path: dist
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@v1.9.0
with:
repository-url: https://test.pypi.org/legacy/