Bump pypa/gh-action-pypi-publish from 1.10.1 to 1.13.0 in /.github/workflows #36
Workflow file for this run
This file contains hidden or 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: Code_Analysis_Workflow | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| Code_Analysis_Job: | |
| if: ${{ ! github.event.pull_request.head.repo.fork }} | |
| runs-on: ubuntu-latest | |
| environment: test | |
| steps: | |
| - | |
| name: Check out repository code | |
| uses: actions/checkout@v4 | |
| - | |
| name: Setup Python environment | |
| uses: actions/setup-python@v5 | |
| - | |
| name: Install Dependencies | |
| run: pip install requests | |
| - | |
| name: Install Package | |
| run: pip install -e . | |
| - | |
| name: Running acceptace test | |
| run: python test.py | |
| env: | |
| ULTRADNS_UNIT_TEST_USERNAME: ${{ secrets.ULTRADNS_UNIT_TEST_USERNAME }} | |
| ULTRADNS_UNIT_TEST_PASSWORD: ${{ secrets.ULTRADNS_UNIT_TEST_PASSWORD }} | |
| ULTRADNS_UNIT_TEST_HOST_URL: ${{ secrets.ULTRADNS_UNIT_TEST_HOST_URL }} |