Add a license field where required #99
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: Error Check | |
on: [push, pull_request] | |
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 |