Fix misc_explobox2 explosion origin #52
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: Validate Source | |
on: | |
pull_request: | |
branches: [ "master", "main" ] | |
push: | |
branches: [ "master", "main" ] | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup fteqcc | |
run: | | |
wget https://www.fteqcc.org/dl/fteqcc_linux64.zip | |
unzip fteqcc_linux64.zip | |
mkdir -p bin | |
mv fteqcc64 bin/fteqcc | |
- name: build package | |
run: PATH=./bin:$PATH make |