Skip to content

Commit 6e19903

Browse files
committed
Fix conditional syntax (again)
1 parent 69a2fcb commit 6e19903

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ jobs:
3737
if: matrix.build-net-tokio
3838
run: RUSTFLAGS="-C link-dead-code" cargo build --verbose
3939
- name: Build on Rust ${{ matrix.toolchain }}
40-
if: !matrix.build-net-tokio
40+
if: ! matrix.build-net-tokio
4141
run: RUSTFLAGS="-C link-dead-code" cargo build --verbose -p lightning
4242
- name: Test on Rust ${{ matrix.toolchain }} with net-tokio
4343
if: matrix.build-net-tokio
4444
run: RUSTFLAGS="-C link-dead-code" cargo test --verbose
4545
- name: Test on Rust ${{ matrix.toolchain }}
46-
if: !matrix.build-net-tokio
46+
if: ! matrix.build-net-tokio
4747
run: RUSTFLAGS="-C link-dead-code" cargo test --verbose -p lightning
4848
- name: Install deps for kcov
4949
if: matrix.coverage

0 commit comments

Comments
 (0)