Skip to content

Commit

Permalink
Add Bugcrowd, HackenProof, HackerOne, Intigriti, and YesWeHack test w…
Browse files Browse the repository at this point in the history
…orkflows
  • Loading branch information
root4loot committed Oct 4, 2024
1 parent b96ff9e commit fb05774
Show file tree
Hide file tree
Showing 7 changed files with 127 additions and 2 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test-bugcrowd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Bugcrowd

on:
schedule:
- cron: "0 8 * * *"

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.23"

- name: Install Dependencies
run: go mod download

- name: Run Bugcrowd Tests
run: go test -v ./pkg/bugbounty/bugcrowd/...
24 changes: 24 additions & 0 deletions .github/workflows/test-hackenproof.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: HackenProof

on:
schedule:
- cron: "0 8 * * *"

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.23"

- name: Install Dependencies
run: go mod download

- name: Run HackenProof Tests
run: go test -v ./pkg/bugbounty/hackenproof/...
24 changes: 24 additions & 0 deletions .github/workflows/test-hackerone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: HackerOne

on:
schedule:
- cron: "0 8 * * *"

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.23"

- name: Install Dependencies
run: go mod download

- name: Run HackerOne Tests
run: go test -v ./pkg/bugbounty/hackerone/...
24 changes: 24 additions & 0 deletions .github/workflows/test-intigriti.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Intigriti

on:
schedule:
- cron: "0 8 * * *"

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.23"

- name: Install Dependencies
run: go mod download

- name: Run Intigriti Tests
run: go test -v ./pkg/bugbounty/intigriti/...
24 changes: 24 additions & 0 deletions .github/workflows/test-yeswehack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: YesWeHack

on:
schedule:
- cron: "0 8 * * *"

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.23"

- name: Install Dependencies
run: go mod download

- name: Run YesWeHack Tests
run: go test -v ./pkg/bugbounty/yeswehack/...
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test all
name: Test All

on:
push:
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
<img src="logo.png" alt="Logo" width="900"/>

[![Test](https://github.com/root4loot/rescope/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/root4loot/rescope/actions/workflows/test.yml)
[![HackerOne](https://github.com/root4loot/rescope/actions/workflows/test-hackerone.yml/badge.svg?branch=main)](https://github.com/root4loot/rescope/actions/workflows/test-hackerone.yml)
[![Bugcrowd](https://github.com/root4loot/rescope/actions/workflows/test-bugcrowd.yml/badge.svg?branch=main)](https://github.com/root4loot/rescope/actions/workflows/test-bugcrowd.yml)
[![Intigriti](https://github.com/root4loot/rescope/actions/workflows/test-intigriti.yml/badge.svg?branch=main)](https://github.com/root4loot/rescope/actions/workflows/test-intigriti.yml)
[![YesWeHack](https://github.com/root4loot/rescope/actions/workflows/test-yeswehack.yml/badge.svg?branch=main)](https://github.com/root4loot/rescope/actions/workflows/test-yeswehack.yml)
[![HackenProof](https://github.com/root4loot/rescope/actions/workflows/test-hackenproof.yml/badge.svg?branch=main)](https://github.com/root4loot/rescope/actions/workflows/test-hackenproof.yml)
![Test CLI](https://github.com/root4loot/rescope/actions/workflows/test.yml/badge.svg?branch=main)
![Twitter Follow](https://img.shields.io/twitter/follow/danielantonsen.svg?style=dark)


Expand Down

0 comments on commit fb05774

Please sign in to comment.