-
Notifications
You must be signed in to change notification settings - Fork 0
79 lines (55 loc) · 2.22 KB
/
Copy pathpython-app.yml
File metadata and controls
79 lines (55 loc) · 2.22 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
run-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v3
with:
python-version: "3.13"
- name: Prep directories
run: 7z x testing.7z
- name: List dirs
run: ls -la
- name: Run application 1
run: python main.py syncer-testing/test1/source/ syncer-testing/test1/replica/ 1 99 syncer-testing/test1/log -v
- name: Run application 2
run: python main.py syncer-testing/test2/source/ syncer-testing/test2/replica/ 1 99 syncer-testing/test3/log -v
- name: Run application 3
run: python main.py syncer-testing/test3/source/ syncer-testing/test3/replica/ 1 99 syncer-testing/test3/log -v
- name: Run application 4
run: python main.py syncer-testing/test4/source/ syncer-testing/test4/replica/ 1 99 syncer-testing/test4/log -v
- name: Clean up
run: rm syncer-testing -fr
run-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v3
with:
python-version: "3.13"
- name: Prep directories
run: 7z x testing.7z
- name: List dirs
run: Get-ChildItem -Force
- name: Run application 1
run: python main.py syncer-testing/test1/source/ syncer-testing/test1/replica/ 1 99 syncer-testing/test1/log -v
- name: Run application 2
run: python main.py syncer-testing/test2/source/ syncer-testing/test2/replica/ 1 99 syncer-testing/test3/log -v
- name: Run application 3
run: python main.py syncer-testing/test3/source/ syncer-testing/test3/replica/ 1 99 syncer-testing/test3/log -v
- name: Run application 4
run: python main.py syncer-testing/test4/source/ syncer-testing/test4/replica/ 1 99 syncer-testing/test4/log -v
- name: Clean up
run: rm -r -fo syncer-testing