We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6611325 commit 9da48efCopy full SHA for 9da48ef
.github/workflows/build.yml
@@ -45,11 +45,11 @@ jobs:
45
46
- name: Build
47
run: |
48
- cargo build --release ${{ matrix.features && ' --features ' + matrix.features || '' }}
49
-
+ cargo build --release${{ matrix.features && format(' --features {0}', matrix.features) || '' }}
+
50
- name: Run Tests
51
52
- cargo test ${{ matrix.features && ' --features ' + matrix.features || '' }}
+ cargo test ${{ matrix.features && format(' --features {0}', matrix.features) || '' }}
53
54
- name: Create Zip Archive
55
if: startsWith(github.ref, 'refs/tags/')
0 commit comments