We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc7f4e9 commit d88eaecCopy full SHA for d88eaec
1 file changed
.github/workflows/docker-image.yml
@@ -0,0 +1,32 @@
1
+name: Docker Image CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
+env:
9
+ PYTHON_VERSION: 21
10
+jobs:
11
12
+ build:
13
14
+ runs-on: ubuntu-latest
15
+ defaults:
16
+ run:
17
+ working-directory: app
18
19
20
+ steps:
21
+ - name: checkout
22
+ uses: actions/checkout@v4
23
+ - name: Set up Python
24
+ uses: actions/setup-python@v4
25
+ with:
26
+ python-version: ${{ env.PYTHON_VERSION }}
27
28
+ - name: Install dependencies
29
+ run: |
30
+ python -m pip install --upgrade pip
31
+ pip install -r requirements.txt
32
0 commit comments