Skip to content
This repository was archived by the owner on Jun 3, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 0 additions & 24 deletions .github/workflows/merge-test.yaml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/workflows/pull-request-test.yaml

This file was deleted.

54 changes: 54 additions & 0 deletions .github/workflows/test-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Test Checks
on:
pull_request:
branches:
- main
- 'release/*'
push:
branches:
- main
- 'release/*'

jobs:
test-setup:
runs-on: ubuntu-latest
outputs:
python-diff: ${{ steps.python-check.outputs.output }}
full-check: ${{ steps.full-check.outputs.output }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: "Checking if sparsezoo python code was changed"
id: python-check
run: >
((git diff --name-only origin/main HEAD | grep -E "[src|tests]/sparsezoo|setup.py")
|| (echo $GITHUB_REF | grep -E "refs/heads/[release/|main]"))
&& echo "::set-output name=output::1" || echo "::set-output name=output::0"
- name: "Checking if full tests need to run"
id: full-check
run: >
(echo $GITHUB_REF | grep -E "refs/heads/[release/|main]")
&& echo "::set-output name=output::1" || echo "::set-output name=output::0"
python-tests:
runs-on: ubuntu-latest
needs: test-setup
if: ${{needs.test-setup.outputs.python-diff == 1}}
steps:
- uses: actions/checkout@v2
- name: "⚙️ Install dependencies"
run: pip3 install .[dev]
- name: "🔬 Running tests"
run: make test
env:
SPARSEZOO_API_URL: https://staging-api.neuralmagic.com
extensive-python-tests:
runs-on: ubuntu-latest
needs: test-setup
if: ${{needs.test-setup.outputs.full-check == 1}}
steps:
- uses: actions/checkout@v2
- name: "⚙️ Install dependencies"
run: pip3 install .[dev]
- name: "🔬 Running tests"
run: make test TARGETS=full