We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f325c9c commit efe2fb6Copy full SHA for efe2fb6
.github/workflows/pull_request.yml
@@ -25,3 +25,15 @@ jobs:
25
unacceptable_language_check_enabled: false
26
# https://github.com/swiftlang/swift-syntax/issues/2991
27
yamllint_check_enabled: false
28
+ verify_source_code:
29
+ name: Validate generated code
30
+ runs-on: ubuntu-latest
31
+ container:
32
+ image: swift:latest
33
+ steps:
34
+ - name: Checkout repository
35
+ uses: actions/checkout@v4
36
+ with:
37
+ persist-credentials: false
38
+ - name: Validate generated code
39
+ run: "./swift-syntax-dev-utils verify-source-code --toolchain /usr"
0 commit comments