-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a workflow to test if there are ES errors
- Loading branch information
1 parent
9b303b2
commit 50cd0b5
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Error Check | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
types: [opened, synchronize] | ||
|
||
jobs: | ||
test-parse: | ||
name: Data Files | ||
runs-on: windows-2022 | ||
env: | ||
CONTINUOUS: EndlessSky-win64-continuous.zip | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- name: Download latest continuous | ||
run: gh release download -R endless-sky/endless-sky continuous -p ${{ env.CONTINUOUS }} | ||
- name: Extract and prepare continuous | ||
run: | | ||
Expand-Archive ${{ env.CONTINUOUS }} -DestinationPath endless-sky -Force | ||
cd .\endless-sky | ||
mkdir plugins | ||
cd .\plugins | ||
mkdir Jibauni | ||
- uses: actions/checkout@v4 | ||
with: | ||
path: '.\endless-sky\plugins\Jibauni' | ||
- name: Parse Datafiles | ||
run: "'.\\endless-sky\\Endless Sky.exe' -p" | ||
shell: bash |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
mission "Test" | ||
name "" | ||
landing | ||
description "" | ||
sourre Baitoon | ||
destination Hill | ||
on offer | ||
conversation | ||
`` | ||
accept | ||
on complete | ||
dialog `` |