Skip to content

Commit f0ba5dc

Browse files
committed
feat(Actions): new test workflows
1 parent fe3130d commit f0ba5dc

File tree

4 files changed

+26
-130
lines changed

4 files changed

+26
-130
lines changed

.github/workflows/CICD.yml

Lines changed: 0 additions & 119 deletions
This file was deleted.

.github/workflows/prepare_pr.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches-ignore:
6+
- master
7+
- next
8+
9+
jobs:
10+
test:
11+
uses: Geode-solutions/actions/.github/workflows/py-test.yml@master
12+
with:
13+
repos: ${{ vars.REPOS }}
14+
secrets: inherit

.github/workflows/test_pr.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Test PR
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened, ready_for_review]
6+
7+
jobs:
8+
test:
9+
uses: Geode-solutions/actions/.github/workflows/py-test-pr.yml@master
10+
with:
11+
repos: ${{ vars.REPOS }}
12+
secrets: inherit

0 commit comments

Comments
 (0)