-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (69 loc) · 1.78 KB
/
test.yml
File metadata and controls
69 lines (69 loc) · 1.78 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
name: Test
on: [push]
jobs:
test-api:
name: API
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Copy files
run: |
mkdir tests
cp client/game_server_api.py tests/
cp .github/workflows/test*.py tests/
- name: Start server
run: server/game_server.py &
- name: Test
run: tests/test_api.py
test-game:
name: Game
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Copy files
run: |
mkdir tests
cp client/game_server_api.py tests/
cp .github/workflows/test*.py tests/
- name: Start server
run: server/game_server.py &
- name: Test
run: tests/test_game.py
test-macos:
name: macOS
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Copy files
run: |
mkdir tests
cp client/game_server_api.py tests/
cp .github/workflows/test*.py tests/
- name: Start server
run: server/game_server.py &
- name: Test game
run: tests/test_game.py
- name: Test API
run: tests/test_api.py
test-windows:
name: Windows
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Copy files
run: |
mkdir tests
cp client/game_server_api.py tests/
cp .github/workflows/test*.py tests/
- name: Test game
run: |
pythonw server/game_server.py
python tests/test_game.py
- name: Test API
run: |
pythonw server/game_server.py
python tests/test_api.py