Skip to content

Commit e84cc95

Browse files
authored
Create Error Checj
1 parent 22cfc16 commit e84cc95

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/error-check.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Error Check
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test-parse:
7+
name: Data Files
8+
runs-on: windows-2022
9+
env:
10+
CONTINUOUS: EndlessSky-win64-continuous.zip
11+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
12+
steps:
13+
- name: Download latest continuous
14+
run: gh release download -R endless-sky/endless-sky continuous -p ${{ env.CONTINUOUS }}
15+
- name: Extract and prepare continuous
16+
run: |
17+
Expand-Archive ${{ env.CONTINUOUS }} -DestinationPath endless-sky -Force
18+
cd .\endless-sky
19+
mkdir plugins
20+
cd .\plugins
21+
mkdir rumskib
22+
- uses: actions/checkout@v4
23+
with:
24+
path: '.\endless-sky\plugins\rumskib'
25+
- name: Parse Datafiles
26+
run: "'.\\endless-sky\\Endless Sky.exe' -p"
27+
shell: bash

0 commit comments

Comments
 (0)