Skip to content

Commit f17bf4e

Browse files
committed
Add Docker to the CI
1 parent b591d45 commit f17bf4e

File tree

1 file changed

+22
-21
lines changed

1 file changed

+22
-21
lines changed

.github/workflows/pull_request.yaml

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -19,39 +19,40 @@ jobs:
1919
- name: Checkout repository
2020
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2121

22-
- name: Install uv
23-
uses: astral-sh/setup-uv@bd01e18f51369d5a26f1651c3cb451d3417e3bba # v6.3.1
24-
with:
25-
version: ${{ vars.UV_VERSION }}
22+
# - name: Install uv
23+
# uses: astral-sh/setup-uv@bd01e18f51369d5a26f1651c3cb451d3417e3bba # v6.3.1
24+
# with:
25+
# version: ${{ vars.UV_VERSION }}
2626

27-
- name: Install Python
28-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
29-
with:
30-
python-version-file: .python-version
27+
# - name: Install Python
28+
# uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
29+
# with:
30+
# python-version-file: .python-version
3131

32-
- name: Install Python packages
33-
run: uv sync --locked
34-
shell: bash
32+
# - name: Install Python packages
33+
# run: uv sync --locked
34+
# shell: bash
3535

36-
- name: Check code
37-
run: uv run --frozen -- poe check-code
38-
shell: bash
36+
# - name: Check code
37+
# run: uv run --frozen -- poe check-code
38+
# shell: bash
3939

40-
- name: Unit tests
41-
run: uv run --frozen -- pytest -m unit
42-
shell: bash
40+
# - name: Unit tests
41+
# run: uv run --frozen -- pytest -m unit
42+
# shell: bash
4343

44-
- name: Integration tests
45-
if: false
46-
run: uv run --frozen -- pytest -m integration
47-
shell: bash
44+
# - name: Integration tests
45+
# if: false
46+
# run: uv run --frozen -- pytest -m integration
47+
# shell: bash
4848

4949
- name: Set up Docker Buildx
5050
uses: docker/setup-buildx-action@v3
5151

5252
- name: Build and push
5353
uses: docker/build-push-action@v6
5454
with:
55+
file: api/src/api/Dockerfile
5556
push: false
5657

5758
deploy-api-dev:

0 commit comments

Comments
 (0)