feat: add wget support #12
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 🧪 Test | |
| on: | |
| workflow_call: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Test | |
| shell: bash | |
| run: ./test/bats/bin/bats ./test | |
| integration-alpine: | |
| needs: test | |
| runs-on: ubuntu-latest | |
| container: library/alpine:3 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Install dependencies | |
| run: apk add jq openssl bash | |
| - name: Test | |
| shell: bash | |
| run: ./test/bats/bin/bats ./test | |
| - name: Install something | |
| shell: bash | |
| run: ./gah install mikefarah/yq --unattended | |
| - name: Test if yq was installed correctly | |
| run: yq --version | |
| integration-debian: | |
| needs: test | |
| runs-on: ubuntu-latest | |
| container: library/debian:13-slim | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Install dependencies | |
| run: apt-get update && apt-get install -y jq openssl curl | |
| - name: Test | |
| run: ./test/bats/bin/bats ./test | |
| - name: Install something | |
| run: ./gah install mikefarah/yq --unattended | |
| - name: Test if yq was installed correctly | |
| run: yq --version |