Fix task to change user shell to brew installed bash. #217
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: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: "0 5 * * 4" | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
cache: 'pipenv' | |
- name: Install dependencies with pipenv | |
run: | | |
pip install pipenv | |
pipenv install --deploy --dev | |
- run: pipenv run yamllint . | |
- run: pipenv run ansible-lint |