From 4d41e39a13ca5955711ae56c9a20c73ff7c9756b Mon Sep 17 00:00:00 2001 From: travisladuke Date: Wed, 28 Aug 2024 15:05:52 -0700 Subject: [PATCH] Add action to run the installer --- .github/workflows/install-test.yml | 33 ++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/install-test.yml diff --git a/.github/workflows/install-test.yml b/.github/workflows/install-test.yml new file mode 100644 index 0000000..09dda05 --- /dev/null +++ b/.github/workflows/install-test.yml @@ -0,0 +1,33 @@ +name: Curl | Bash Test +on: + push: + paths: + - install.sh.in + # branches: [ main ] + schedule: + - cron: "0 0 * * 0" # weekly +jobs: + curl-bash: + runs-on: ubuntu-latest + strategy: + matrix: + container: + - "ubuntu:latest" + - "ubuntu:24.10" + - "ubuntu:24.04" + - "ubuntu:22.04" + - "ubuntu:20.04" + - "debian:latest" + - "debian:12" + - "debian:11" + - "debian:10" + - "kalilinux/kali-rolling:latest" + + container: + image: ${{ matrix.container }} + + steps: + - name: apt + run: apt-get -y update && apt-get -y install curl gnupg2 gnupg gpg || true + - name: install ${{ matrix.container }} + run: curl -s https://install.zerotier.com | bash