File tree 4 files changed +51
-4
lines changed
4 files changed +51
-4
lines changed Original file line number Diff line number Diff line change 35
35
- name : Run soundness checks
36
36
run : |
37
37
./dev/check-generated-code.sh
38
+
39
+ check-imports :
40
+ name : Check imports have access level
41
+ runs-on : ubuntu-latest
42
+ steps :
43
+ - name : Checkout repository
44
+ uses : actions/checkout@v4
45
+ with :
46
+ persist-credentials : false
47
+ - name : Mark the workspace as safe
48
+ run : git config --global --add safe.directory ${GITHUB_WORKSPACE}
49
+ - name : Check import access level
50
+ run : |
51
+ ./dev/check-imports.sh
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- import Synchronization
17
+ private import Synchronization
18
18
19
19
extension ServerContext {
20
20
@TaskLocal
Original file line number Diff line number Diff line change 15
15
*/
16
16
17
17
#if canImport(Darwin)
18
- import Darwin
18
+ private import Darwin
19
19
#elseif canImport(Glibc)
20
- import Glibc
20
+ private import Glibc
21
21
#elseif canImport(Musl)
22
- import Musl
22
+ private import Musl
23
23
#endif
24
24
25
25
enum System {
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ # # Copyright 2025, gRPC Authors All rights reserved.
3
+ # #
4
+ # # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # # you may not use this file except in compliance with the License.
6
+ # # You may obtain a copy of the License at
7
+ # #
8
+ # # http://www.apache.org/licenses/LICENSE-2.0
9
+ # #
10
+ # # Unless required by applicable law or agreed to in writing, software
11
+ # # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # # See the License for the specific language governing permissions and
14
+ # # limitations under the License.
15
+
16
+ set -euo pipefail
17
+
18
+ log () { printf -- " ** %s\n" " $* " >&2 ; }
19
+ error () { printf -- " ** ERROR: %s\n" " $* " >&2 ; }
20
+ fatal () { error " $@ " ; exit 1; }
21
+
22
+ here=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
23
+ root=$( realpath " ${here} /.." )
24
+
25
+ exclude=" ${root} /Sources/GRPCCore/Documentation.docc"
26
+
27
+ log " Checking all imports have an access level"
28
+ if grep -r " ^import " --exclude-dir=" ${exclude} " " ${root} /Sources" ; then
29
+ # Matches are bad!
30
+ exit 1
31
+ else
32
+ exit 0
33
+ fi
You can’t perform that action at this time.
0 commit comments