Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: install xmllint for testing #397

Merged
merged 1 commit into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,10 @@ jobs:
run: cargo install kdlfmt
- name: kcl
run: go install kcl-lang.io/cli/cmd/kcl@latest
- run: cargo install typos-cli
- name: typos
run: cargo install typos-cli
- name: xmllint
run: sudo apt-get install -y libxml2 && xmllint --version
- name: run tests
run: cargo test

Expand Down
8 changes: 4 additions & 4 deletions codegen/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ reqwest = { version = "0.12.5", features = ["blocking", "json"] }
schemars = "0.8.21"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = { version = "1.0.119" }
# TODO: switch to other yaml library since serde_yamlm is deprecated
# TODO: switch to other yaml library since serde_yaml is deprecated
# NOTE: since it is just a build dependency it is low priority
serde_yaml = { version = "0.9.34" }
toml = { version = "0.8.14" }
Loading