File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change
1
+ # .github/workflows/ci.yml
1
2
name : CI / Test & Docker Build
2
3
3
4
on :
16
17
uses : actions/checkout@v4
17
18
18
19
# 2. Set up Python 3.10
19
- - name : Setup Python
20
+ - name : Set up Python
20
21
uses : actions/setup-python@v4
21
22
with :
22
23
python-version : ' 3.10'
@@ -31,17 +32,17 @@ jobs:
31
32
- name : Run pytest
32
33
run : pytest --maxfail=1 --disable-warnings -q
33
34
34
- # 5. Set up Docker Buildx for multi- arch
35
+ # 5. Set up Docker Buildx for multi‑ arch
35
36
- name : Set up Docker Buildx
36
37
uses : docker/setup-buildx-action@v3
37
38
38
- # 6. Build ( and load) Docker image
39
+ # 6. Build and load Docker image
39
40
- name : Build and load Docker image
40
41
uses : docker/build-push-action@v4
41
42
with :
42
43
context : .
43
44
file : Dockerfile
44
45
platforms : linux/amd64,linux/arm64
45
- load : true # load image into local Docker
46
- push : false # do not push anywhere
46
+ load : true # load into the runner’s Docker daemon
47
+ push : false # do not push to any registry
47
48
tags : ffmpeg-api-service:latest
You can’t perform that action at this time.
0 commit comments