backend upgrade #60
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: Stage1 Bootstrap role workflow | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
vault_role: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout project" | |
uses: "actions/checkout@v4" | |
with: | |
repository: "${{ github.repository }}" | |
path: "./roles/stage1_bootstrap" | |
- name: "Run molecule" | |
run: >- | |
source .envrc && | |
molecule test | |
env: | |
ANSIBLE_FORCE_COLOR: "1" |