Skip to content

Commit 03feb76

Browse files
committed
more buildx
1 parent bb8baa9 commit 03feb76

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ jobs:
4444
with:
4545
prefix-key: ${{ env.RUST_CACHE_KEY }}
4646

47+
- name: Set up Docker Buildx
48+
uses: docker/setup-buildx-action@v3
49+
4750
- name: Launch postgres
4851
run: just ensure_db_and_s3_are_running
4952

@@ -80,6 +83,9 @@ jobs:
8083
with:
8184
prefix-key: ${{ env.RUST_CACHE_KEY }}
8285

86+
- name: Set up Docker Buildx
87+
uses: docker/setup-buildx-action@v3
88+
8389
- name: run tests
8490
run: just run-tests run-builder-tests
8591

@@ -97,6 +103,9 @@ jobs:
97103
with:
98104
prefix-key: ${{ env.RUST_CACHE_KEY }}
99105

106+
- name: Set up Docker Buildx
107+
uses: docker/setup-buildx-action@v3
108+
100109
- name: install `just`
101110
run: sudo snap install --edge --classic just
102111

@@ -122,6 +131,9 @@ jobs:
122131
with:
123132
prefix-key: ${{ env.RUST_CACHE_KEY }}
124133

134+
- name: Set up Docker Buildx
135+
uses: docker/setup-buildx-action@v3
136+
125137
- run: just lint
126138

127139
eslint:

justfiles/testing.just

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ clippy *args:
2323
--all-targets \
2424
--workspace \
2525
--locked \
26-
{{ args}} \
26+
{{ args }} \
2727
-- -D warnings
2828

2929
clippy-fix:

0 commit comments

Comments
 (0)