Add squash to the merge request #260
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: test_vault | |
on: | |
push: | |
branches: [ 'main' ] | |
pull_request: | |
branches: [ '*' ] | |
defaults: | |
run: | |
working-directory: ./vault | |
jobs: | |
simple_secret: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build docker compose | |
run: | | |
docker compose pull | |
docker compose build | |
- name: Run the workflow | |
run: | | |
export INVENTORY_FILE=inventory_simple_secret.yaml | |
docker compose run tdk | |
static_users: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build docker compose | |
run: | | |
docker compose pull | |
docker compose build | |
- name: Run the workflow | |
run: | | |
export INVENTORY_FILE=inventory_static_users.yaml | |
docker compose run tdk | |
dynamic_users: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build docker compose | |
run: | | |
docker compose pull | |
docker compose build | |
- name: Run the workflow | |
run: | | |
export INVENTORY_FILE=inventory_dynamic_users.yaml | |
docker compose run tdk |