/endless-sky-test-parse

An Action to test parse data for https://github.com/endless-sky/endless-sky

GNU General Public License v3.0GPL-3.0

endless-sky-test-parse

An Action to test parse data for https://github.com/endless-sky/endless-sky

Usage

- uses: warp-core/endless-sky-test-parse@master
  with:
    # The repository to test parse. Usually a pluging for Endless Sky.
    # Default: ${{ github.repository }}
    repository:
    # The token to use to checkout the repository.
    # Default: ${{ github.token }}
    token:

Example

name: CI

on:
  push:
    branches:
      - master
  pull_request:
    types: [opened, synchronize]

concurrency:
  group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}
  cancel-in-progress: true

jobs:
  test-parse-world-forge:
    name: Data Files
    runs-on: windows-2022
    steps:
    - uses: warp-core/endless-sky-test-parse@master
      with:
        repository: EndlessSkyCommunity/world-forge

If this action is running within the repository to test parse, no parameters are necessary:

    steps:
    - uses: warp-core/endless-sky-test-parse@master