Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into CM-22319-run-secrets-scanning-asynchronously…
Browse files Browse the repository at this point in the history
…-using-polling-mechanism
MarshalX authored Oct 25, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents 9a43fc9 + 640b586 commit 334b47b
Showing 3 changed files with 118 additions and 120 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/tests_full.yml
Original file line number Diff line number Diff line change
@@ -35,7 +35,9 @@ jobs:
pypi.org
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v4
@@ -47,7 +49,7 @@ jobs:
uses: actions/cache@v3
with:
path: ~/.local
key: poetry-${{ matrix.os }}-0 # increment to reset cache
key: poetry-${{ matrix.os }}-1 # increment to reset cache

- name: Setup Poetry
if: steps.cached-poetry.outputs.cache-hit != 'true'
@@ -61,5 +63,11 @@ jobs:
- name: Install dependencies
run: poetry install

- name: Run Tests
- name: Run executable test
if: runner.os == 'Linux'
run: |
poetry run pyinstaller pyinstaller.spec
./dist/cycode version
- name: Run pytest
run: poetry run pytest
Loading

0 comments on commit 334b47b

Please sign in to comment.