Skip to content

Bump pydantic-settings from 2.3.4 to 2.4.0 #632

Bump pydantic-settings from 2.3.4 to 2.4.0

Bump pydantic-settings from 2.3.4 to 2.4.0 #632

Workflow file for this run

name: CI
on:
push:
branches:
- master
tags:
- '**'
pull_request: {}
jobs:
test:
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379:6379
options: --entrypoint redis-server
steps:
- uses: actions/checkout@v2
- name: set up python
uses: actions/setup-python@v1
with:
python-version: '3.9'
- name: install dependencies
run: |
make install
pip freeze
- name: lint
run: make lint
- name: test
run: make test
- name: codecov
run: bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: '422d47c0-a480-4e77-a099-2d7a7a5d4ea2'
deploy:
needs:
- test
if: "success() && startsWith(github.ref, 'refs/tags/')"
runs-on: ubuntu-latest
steps:
- run: curl ${{ secrets.RENDER_DEPLOY_HOOK_URL }}