Skip to content

Commit

Permalink
Adds metasploit-frameworks acceptance tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cgranleese-r7 committed Oct 18, 2024
1 parent 6a31fbe commit 4aec426
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/metasploit-framework_acceptance.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Metasploit Framework Acceptance

# Optional, enabling concurrency limits: https://docs.github.com/en/actions/using-jobs/using-concurrency
#concurrency:
# group: ${{ github.ref }}-${{ github.workflow }}
# cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
permissions:
actions: none
checks: none
contents: none
deployments: none
id-token: none
issues: none
discussions: none
packages: none
pages: none
pull-requests: none
repository-projects: none
security-events: none
statuses: none

on:
workflow_dispatch:
inputs:
metasploitFrameworkCommit:
description: 'metasploit-framework branch would like to test'
required: true
default: 'master'
push:
branches-ignore:
- gh-pages
- metakitty
pull_request:
branches:
- '*'
# Example of running as a cron, to weed out flaky tests
# schedule:
# - cron: '*/15 * * * *'

jobs:
build:
uses: rapid7/metasploit-framework/.github/workflows/shared_smb_acceptance.yml@master
with:
metasploit_framework_commit: ${{ github.event.inputs.metasploitFrameworkCommit }}
build_smb: true

0 comments on commit 4aec426

Please sign in to comment.