Merge pull request #9401 from SwiftPackageIndex/spi-auto-9400 #11052
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: Valid JSON | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
pull_request_review: | |
types: [submitted] | |
env: | |
SWIFT_IMAGE: swift:6.0.3-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 |