Skip to content

Commit

Permalink
add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Und3rf10w authored Dec 21, 2023
1 parent 730a46c commit fb1a6bb
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test_install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test install on Kali Linux

on:
push:
branches: [ test_install_on_kali ]
pull_request:
branches: [ test_install_on_kali ]
workflow_dispatch:

jobs:
kali-job:
runs-on: ubuntu-latest
container:
image: kalilinux/kali-rolling:latest # Use the correct tag

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Update packages and install dependencies
run: |
apt-get update
apt-get install -y --no-install-recommends git
# Running installer.sh
- name: Run installer script
run: |
./installer.sh

0 comments on commit fb1a6bb

Please sign in to comment.