Skip to content

Workflow file for this run

name: Curl | Bash Test
on:
push:
paths:
- install.sh.in
- .github/workflows/install-test.yml
# 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