Install fastapi with standard extra (#24) #53
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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: | |
${{ github.workflow }}-${{ github.ref_name }}-${{ | |
github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: "build image" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and export | |
uses: docker/build-push-action@v6 | |
with: | |
tags: uv-docker-example:latest | |
cache-from: type=gha,scope=uv-docker-example | |
cache-to: type=gha,mode=min,scope=uv-docker-example | |
outputs: type=docker,dest=/tmp/uv-docker-example.tar | |
- name: Build and export (multistage) | |
uses: docker/build-push-action@v6 | |
with: | |
file: multistage.Dockerfile | |
tags: uv-docker-example-multistage:latest | |
cache-from: type=gha,scope=uv-docker-example-multistage | |
cache-to: type=gha,mode=min,scope=uv-docker-example-multistage | |
outputs: type=docker,dest=/tmp/uv-docker-example-multistage.tar | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: uv-docker-example | |
path: /tmp/uv-docker-example.tar | |
- name: Upload artifact (multistage) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: uv-docker-example-multistage | |
path: /tmp/uv-docker-example-multistage.tar | |
test: | |
name: "test image" | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: uv-docker-example | |
path: /tmp | |
- name: Download artifact (multistage) | |
uses: actions/download-artifact@v4 | |
with: | |
name: uv-docker-example-multistage | |
path: /tmp | |
- name: Load images | |
run: | | |
docker load --input /tmp/uv-docker-example.tar | |
docker load --input /tmp/uv-docker-example-multistage.tar | |
docker image ls -a | |
- name: Test command line | |
run: ./run.sh hello | |
- name: Test Docker compose | |
run: | | |
docker compose up --watch -d | |
docker compose down | |
- name: Test command line (multistage) | |
run: docker run uv-docker-example-multistage:latest hello |