Merge pull request #8377 from SwiftPackageIndex/spi-auto-8376 #10097
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.1-jammy | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
validate: | |
runs-on: ubuntu-20.04 | |
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 |