chore: decrease image quality #527
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: | |
push: | |
branches: | |
- main | |
jobs: | |
CI: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run CI | |
run: | | |
sw_vers | |
brew reinstall yq | |
git submodule update --init --recursive | |
python3 -m venv venv | |
source venv/bin/activate | |
python3 -m pip --version | |
python3 -m pip install opswork | |
python3 -m pip install ansible | |
ansible --version | |
opswork config init | |
make hosts | |
make recipes | |
make run |