diff options
| author | van Hauser <vh@thc.org> | 2022-07-15 10:12:35 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-15 10:12:35 +0200 |
| commit | c57988e672634ee98048eba6432cc1f4e377e07c (patch) | |
| tree | 1ea5ebbb0b47e8d55b1950e9b787ec9f254655af /.github/workflows/rust_custom_mutator.yml | |
| parent | 40947508037b874020c8dd1251359fecaab04b9d (diff) | |
| parent | b847e0f414e7b310e1a68bc501d4e2453bfce70e (diff) | |
| download | afl++-c57988e672634ee98048eba6432cc1f4e377e07c.tar.gz | |
Merge pull request #1469 from AFLplusplus/dev
push to stable
Diffstat (limited to '.github/workflows/rust_custom_mutator.yml')
| -rw-r--r-- | .github/workflows/rust_custom_mutator.yml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/.github/workflows/rust_custom_mutator.yml b/.github/workflows/rust_custom_mutator.yml index c279439e..7c2f0c12 100644 --- a/.github/workflows/rust_custom_mutator.yml +++ b/.github/workflows/rust_custom_mutator.yml @@ -2,9 +2,12 @@ name: Rust Custom Mutators on: push: - branches: [ stable, dev ] + branches: + - stable + - dev pull_request: - branches: [ stable, dev ] + branches: + - dev # No need for stable-pull-request, as that equals dev-push jobs: test: @@ -17,7 +20,7 @@ jobs: matrix: os: [ubuntu-22.04, ubuntu-20.04] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install Rust Toolchain uses: actions-rs/toolchain@v1 with: @@ -27,4 +30,4 @@ jobs: - name: Run General Tests run: cargo test - name: Run Tests for afl_internals feature flag - run: cd custom_mutator && cargo test --features=afl_internals
\ No newline at end of file + run: cd custom_mutator && cargo test --features=afl_internals |
