Merge pull request #10001 from SwiftPackageIndex/spi-auto-10000 #11705
This file contains hidden or 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: Valid JSON | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
pull_request_review: | |
types: [submitted] | |
env: | |
SWIFT_IMAGE: swift:6.1-jammy | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Validate JSON | |
run: docker run --rm --env GITHUB_TOKEN=$GITHUB_TOKEN -v "$PWD:/host" -w /host $SWIFT_IMAGE swift validate.swift |