Skip to content

Commit

Permalink
Added secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
saneka committed Feb 14, 2025
1 parent 4c2e5d1 commit 2ad1da5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/hello.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Cache virtual environment
uses: actions/cache@v3
with:
path: venv
path: ~/.cache/venv
key: ${{ runner.os }}-venv-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-venv-
Expand All @@ -52,11 +52,12 @@ jobs:
# Runs a single command using the runners shell
- name: Run script
run: |
pip list
pytest -v src/tests/test_a.py
echo Hello, "${{ inputs.name }}"
secret_print:
runs-on: ubuntu-latest
steps:
- name: Send welcome
run: echo "${{ secrets.AWS_ACCOUNT_NO }}"
run: echo "${{ secrets.ACCOUNT_NO }}"

0 comments on commit 2ad1da5

Please sign in to comment.