refactored out the Safe_Str__Cache_Hash which is now on OSBot_Utils #70
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: CI Pipeline - DEV | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - dev | |
| env: | |
| GIT__BRANCH : 'dev' | |
| RELEASE_TYPE : 'minor' | |
| PACKAGE_NAME : 'memory_fs' | |
| jobs: | |
| run-tests: | |
| name: "Run tests" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: "run-tests" | |
| uses: owasp-sbot/OSBot-GitHub-Actions/.github/actions/pytest__run-tests@dev | |
| increment-tag: | |
| name: Increment Tag - DEV | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Increment Tag | |
| uses: owasp-sbot/OSBot-GitHub-Actions/.github/actions/git__increment-tag@dev | |
| with: | |
| release_type: ${{ env.RELEASE_TYPE }} | |
| needs: | |
| - run-tests | |
| publish-to-pypi: | |
| if: False | |
| name: "Publish to: PYPI" | |
| permissions: | |
| id-token: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Git Update Current Branch | |
| uses: owasp-sbot/OSBot-GitHub-Actions/.github/actions/git__update_branch@dev | |
| - name: publish-to-pypi | |
| uses: owasp-sbot/OSBot-GitHub-Actions/.github/actions/pypi__twine__publish@dev | |
| needs: | |
| - increment-tag |