Skip to content

style

style #24

Workflow file for this run

# Copyright (C) The libssh2 project and its contributors.
#
# SPDX-License-Identifier: BSD-3-Clause
#
name: 'CIFuzz'
'on':
push:
branches:
- master
pull_request:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
permissions: {}
jobs:
Fuzzing:
name: 'Fuzzing'
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: 'Build Fuzzers'
id: build
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master # zizmor: ignore[unpinned-uses]
with:
oss-fuzz-project-name: 'libssh2'
dry-run: false
language: c
- name: 'Run Fuzzers'
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master # zizmor: ignore[unpinned-uses]
with:
oss-fuzz-project-name: 'libssh2'
fuzz-seconds: 600
dry-run: false
language: c
- name: 'Upload Crash'
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
if: ${{ failure() && steps.build.outcome == 'success' }}
with:
name: artifacts
path: ./out/artifacts