github actions: add airgap scrip test #5
This file contains 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: Airgap script test | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: airgap-${{ github.head_ref || github.ref }}-${{ github.repository }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install docker | |
uses: docker-practice/actions-setup-docker@master | |
timeout-minutes: 12 | |
- name: Install Helm | |
run: sudo snap install helm --classic | |
- name: Install packages | |
run: sudo snap install jq yq | |
- name: Run test | |
run: make airgap-script-test |