-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (46 loc) · 1.4 KB
/
test_other_repo_python.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Test other repo (Python)
# Build on every branch push, tag push, and pull request change:
on: [push, pull_request]
jobs:
test_other_repo_py_script:
name: Test other repo (Python script)
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Dependencies
run: |
python3 -m pip install -U maturin
- name: Install local ipl3checksum
run: python3 -m pip install .
- name: Get extra dependencies
uses: actions/checkout@v4
with:
repository: ${{ secrets.SECRETREPO }}
token: ${{ secrets.SECRETTOKEN }}
path: deps_repo
- name: Run repo tests
run: python3 tests/check_recursive.py deps_repo
test_other_repo_py_cli:
name: Test other repo (Python cli)
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Dependencies
run: |
python3 -m pip install -U maturin
- name: Install local ipl3checksum
run: python3 -m pip install .
- name: Get extra dependencies
uses: actions/checkout@v4
with:
repository: ${{ secrets.SECRETREPO }}
token: ${{ secrets.SECRETTOKEN }}
path: deps_repo
- name: Run repo tests
run: bindings/python/tests/test_check_other_repo.sh