Skip to content

Commit

Permalink
test action
Browse files Browse the repository at this point in the history
  • Loading branch information
vijayamadhavareddy committed Apr 15, 2024
1 parent 0c52cb9 commit d261e2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ permissions:
on:
push:
branches:
-main
-feature/github_action
jobs:
test:
runs-on: ubuntu-latest
Expand Down
3 changes: 2 additions & 1 deletion src/aws_ssm.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ def run(aws_parameters: dict[str, AwsParameter]):
with open(path, 'r') as f:
params_from_file = parse_input_params(f.read())
params = {**params_from_file, **params_inline}
run(params)
print(f"ENV_VAL: {os.getenv('ENV_VAL')}")
# run(params)

0 comments on commit d261e2e

Please sign in to comment.