Skip to content

Commit

Permalink
Add action to run the installer
Browse files Browse the repository at this point in the history
  • Loading branch information
laduke committed Aug 28, 2024
1 parent 57dfb23 commit 4d41e39
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/install-test.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 4d41e39

Please sign in to comment.