Merge pull request #2 from ben-githubs/0.58.0 #5
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
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| ci: | |
| if: ${{ github.actor != 'panther-bot-automation' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
| - name: Setup Python | |
| uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b | |
| with: | |
| python-version: 3.11 | |
| - name: Install poetry | |
| run: make install-poetry | |
| - name: Setup Virtual Environment | |
| run: make venv | |
| - name: Install Core Utilities | |
| run: make install | |
| - name: Install Dependencies | |
| run: make deps | |
| - name: Install Panther CLI | |
| run: poetry install | |
| - name: Run CLI Tests | |
| run: make ci | |