This repository has been archived by the owner on Jun 27, 2024. It is now read-only.
feat: AAD secret updated #12
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@master | |
- name: Install pre-requisites | |
run: | | |
yarn | |
sudo wget -q -O /usr/bin/sops https://github.com/mozilla/sops/releases/download/v3.7.3/sops-v3.7.3.linux.amd64 | |
sudo chmod a+x /usr/bin/sops | |
sudo pip install --upgrade pip | |
sudo pip uninstall -y ansible-core | |
pip install --force-reinstall ansible==7.6.0 | |
pip install --force-reinstall ansible-lint==6.17.0 | |
- name: Lint Ansible files | |
run: yarn lint |