Update setup_kubectl.yml #52
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: Test CLI Playbook | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install Ansible | |
run: sudo apt update && sudo apt install -y ansible | |
- name: Remove Moby Docker | |
run: sudo apt remove moby-buildx moby-cli | |
- name: Run the CLI Container Playbook | |
run: ansible-playbook cli_container_sec_workstation.yml |