move setup_brew_mac.sh into mac_scripts/ #41
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 | |
env: | |
VAULT_PASS: "${{ secrets.VAULT_PASS }}" | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build & Test Dotfiles | |
run: | | |
docker build --build-arg VAULT_PASS=$VAULT_PASS -t ansible-build -f Dockerfile_GitHub . | |
docker run ansible-build |