Skip to content

Commit 990b004

Browse files
committed
Add github related stuff
1 parent d27cba6 commit 990b004

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

.github/ISSUE_TEMPLATE/Sub_Role.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: Sub Role
3+
about: Template to suggest a new sub role
4+
5+
---
6+
7+
Sub Role of: Traitor, Innocent or Detective
8+
9+
Icon: Which character and the background color
10+
11+
Pros:
12+
- List here all positive effects compared to the original base role
13+
14+
15+
Cons:
16+
- List here all negative effects compared to the original base role

.github/workflows/master.yml

+9
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,15 @@ jobs:
7171
done
7272
working-directory: ${{ env.SCRIPTS_PATH }}/ttt
7373

74+
- name: Compile Roles
75+
run: |
76+
for file in *.sp
77+
do
78+
echo -e "\nCompiling $file..."
79+
spcomp -E -w234 -O2 -v2 -i $SCRIPTS_PATH/include $file
80+
done
81+
working-directory: ${{ env.SCRIPTS_PATH }}/ttt/roles
82+
7483
- name: Compile 3rd party plugins
7584
run: |
7685
for plugin in "block_messages" "customkeyvalues" "discord_api" "no_weapon_fix" "turret_core" "vphysics_crash_avoider"

.github/workflows/pull_request.yml

+9
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,15 @@ jobs:
5858
done
5959
working-directory: ${{ env.SCRIPTS_PATH }}/ttt
6060

61+
- name: Compile Roles
62+
run: |
63+
for file in *.sp
64+
do
65+
echo -e "\nCompiling $file..."
66+
spcomp -E -w234 -O2 -v2 -i $SCRIPTS_PATH/include $file
67+
done
68+
working-directory: ${{ env.SCRIPTS_PATH }}/ttt/roles
69+
6170
- name: Compile 3rd party plugins
6271
run: |
6372
for plugin in "block_messages" "customkeyvalues" "discord_api" "no_weapon_fix" "turret_core" "vphysics_crash_avoider"

0 commit comments

Comments
 (0)