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: Development Workflow | |
on: | |
push: | |
branches-ignore: | |
- 'master' | |
jobs: | |
run: | |
name: Run action | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup AMXXPawn Compiler | |
uses: ./ | |
with: | |
version: "1.10.x" | |
- name: Verify compiler | |
run: | | |
echo "which amxxpc: $(which amxxpc)" | |
echo "includePath directory list: `$includePath`" | |
ls -l $includePath | |
echo "scriptingPath directory list: `$scriptingPath`" | |
ls -l $scriptingPath | |
amxxpc __tests__/compile.sma |