We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3f9920 commit 6ce06bcCopy full SHA for 6ce06bc
1 file changed
.github/workflows/test.yaml
@@ -29,13 +29,15 @@ jobs:
29
with:
30
script: |
31
import os
32
+ import json
33
+
34
for folder in os.listdir('src'):
35
config = os.path.join('src', folder, 'devcontainer-feature.json')
36
if not os.path.isfile(config):
37
continue
38
39
with open(config, 'r') as f:
- data = f.read()
40
+ data = json.load(f)
41
if data.get('deprecated') is True:
42
print(f"Skipping deprecated feature: {folder}")
43
0 commit comments