This repository has been archived by the owner on Jun 16, 2024. It is now read-only.
Update AutoExecConfig include #26
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build plugin | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
sm-version: ["1.10.x", "1.11.x"] | |
name: SM version ${{ matrix.sm-version }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup SP | |
uses: rumblefrog/setup-sp@master | |
with: | |
version: ${{ matrix.sm-version }} | |
- run: | | |
spcomp -i$includePath gameserver/scripting/calladmin.sp | |
spcomp -i$includePath gameserver/scripting/calladmin_steam.sp | |
spcomp -i$includePath gameserver/scripting/calladmin_mysql.sp | |
spcomp -i$includePath gameserver/scripting/calladmin_ts3.sp | |
spcomp -i$includePath gameserver/scripting/calladmin_test.sp | |
spcomp -i$includePath gameserver/scripting/calladmin_usermanager.sp | |
spcomp -i$includePath gameserver/misc/calladmin_block.sp | |
spcomp -i$includePath gameserver/misc/calladmin_immunity.sp | |
spcomp -i$includePath gameserver/misc/discord_calladmin.sp |