Skip to content

Commit 9da48ef

Browse files
committed
Fix yml
1 parent 6611325 commit 9da48ef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ jobs:
4545

4646
- name: Build
4747
run: |
48-
cargo build --release ${{ matrix.features && ' --features ' + matrix.features || '' }}
49-
48+
cargo build --release${{ matrix.features && format(' --features {0}', matrix.features) || '' }}
49+
5050
- name: Run Tests
5151
run: |
52-
cargo test ${{ matrix.features && ' --features ' + matrix.features || '' }}
52+
cargo test ${{ matrix.features && format(' --features {0}', matrix.features) || '' }}
5353
5454
- name: Create Zip Archive
5555
if: startsWith(github.ref, 'refs/tags/')

0 commit comments

Comments
 (0)