From bd2bc16bd85feae03cbc0d4905c2901698df01c2 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Mon, 2 Sep 2024 11:28:10 -0700 Subject: [PATCH] ci: Bug fix: remove stray `cd` commands --- .github/workflows/ci.yaml | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 688ff256..bd7752bb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -112,7 +112,10 @@ jobs: with: command: install args: cargo-afl - - run: cargo-afl afl system-config + - uses: actions-rs/cargo@v1 + with: + command: afl + args: system-config - name: compile fuzz uses: actions-rs/cargo@v1 with: @@ -170,7 +173,10 @@ jobs: with: command: install args: cargo-afl - - run: cargo-afl afl system-config + - uses: actions-rs/cargo@v1 + with: + command: afl + args: system-config - name: compile fuzz uses: actions-rs/cargo@v1 with: @@ -218,8 +224,10 @@ jobs: with: command: install args: cargo-afl - - run: cd fuzz_write - - run: cargo-afl afl system-config + - uses: actions-rs/cargo@v1 + with: + command: afl + args: system-config - name: compile fuzz uses: actions-rs/cargo@v1 with: @@ -277,8 +285,10 @@ jobs: with: command: install args: cargo-afl - - run: cd fuzz_write - - run: cargo-afl afl system-config + - uses: actions-rs/cargo@v1 + with: + command: afl + args: system-config - name: compile fuzz uses: actions-rs/cargo@v1 with: