Skip to content

Bump starlette from 0.27.0 to 0.36.2 #24

Bump starlette from 0.27.0 to 0.36.2

Bump starlette from 0.27.0 to 0.36.2 #24

Workflow file for this run

name: Docker build
on: [push, pull_request]
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Clone and checkout branch
uses: actions/checkout@v2
- name: Set up Python version
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Build project
run: make
- name: Run tests
run: make test
build:
name: Build
needs: tests
runs-on: ubuntu-latest
steps:
- name: Clone and checkout branch
uses: actions/checkout@v2
- name: Build docker image
run: docker build -t test-tag .