mirror of
https://github.com/rumblefrog/setup-sp.git
synced 2024-11-22 01:09:08 +01:00
7efa536397
* fix: missing & outdated dependencies * fix: sp 1.12+ include path resolution * ci: separate ci flow for dev
27 lines
478 B
YAML
27 lines
478 B
YAML
name: Main Workflow
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
|
|
jobs:
|
|
run:
|
|
name: Run action
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Setup SourcePawn Compiler
|
|
uses: rumblefrog/setup-sp@master
|
|
with:
|
|
version: "1.12.x"
|
|
|
|
- name: Verify compiler
|
|
run: |
|
|
which spcomp
|
|
echo $includePath
|
|
ls -l $scriptingPath
|
|
cat $(which spcomp)
|
|
spcomp __tests__/compile.sp
|