-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add basic test for all commits/branches/prs
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Basic Test Checks | ||
on: | ||
pull_request: | ||
branches: | ||
- '*' | ||
push: | ||
branches: | ||
- '*' | ||
|
||
jobs: | ||
test-setup: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
python-diff: ${{ steps.python-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" | ||
python-tests: | ||
runs-on: ubuntu-latest | ||
env: | ||
SPARSEZOO_TEST_MODE: "true" | ||
NM_DISABLE_ANALYTICS: "true" | ||
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 |