-
Notifications
You must be signed in to change notification settings - Fork 12
37 lines (34 loc) · 991 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: CI
on:
push:
branches:
- master
- releases/v[0-9]+.[0-9]+.[0-9]+
pull_request:
types: [opened, synchronize]
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}
cancel-in-progress: true
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 world-forge
- uses: actions/checkout@v4
with:
path: '.\endless-sky\plugins\world-forge'
- name: Parse Datafiles
run: "'.\\endless-sky\\Endless Sky.exe' -p"
shell: bash