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 4e90ebe commit 48938f6Copy full SHA for 48938f6
2 files changed
.github/workflows/ci.yml
@@ -11,7 +11,7 @@ jobs:
11
- uses: actions/checkout@v4
12
- uses: actions/setup-python@v5
13
with:
14
- python-version: '3.11'
+ python-version: "3.11"
15
- name: Install Poetry
16
uses: snok/install-poetry@v1
17
spec/validation_spec.rb
@@ -57,12 +57,12 @@
57
File.open(GBXML_XSD_PATH, 'wb') do |file|
58
file << URI.open(imported_schema_locations[0]).read
59
end
60
-
+
61
# Verify the downloaded file is valid XML
62
if File.size(GBXML_XSD_PATH) == 0
63
raise "Downloaded file is empty"
64
65
66
# Test parse the downloaded XSD to ensure it's valid
67
Nokogiri::XML(File.read(GBXML_XSD_PATH)) do |config|
68
config.strict
0 commit comments