Skip to content

Added Jobs Print secrets in pytest.yaml #6

Added Jobs Print secrets in pytest.yaml

Added Jobs Print secrets in pytest.yaml #6

Workflow file for this run

name: Run Pytest
on:
pull_request:
branches:
- main
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run pytest
run: pytest
- name: Print secrets
run: echo "TEST_API_KEY -> ${{secrets.TEST_API_KEY}}"