Skip to content

Update ci.yml

Update ci.yml #15

Workflow file for this run

name: CI
on:
push
pull_request:

Check failure on line 5 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 5
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 continuous -Force
cd .\continuous
mkdir plugins
cd .\plugins
mkdir world-forge
cd ..
- uses: actions/checkout@v4
with:
path: 'continuous\plugins\world-forge'
- name: Parse Datafiles
run: "'.\Endless Sky.exe' -p"
shell: bash