Bump starlette from 0.27.0 to 0.36.2 #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 . |