Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
- uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- uses: jdx/mise-action@v4
- uses: jdx/mise-action@v4.2.3
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- run: rustup toolchain install stable
Expand Down
4 changes: 4 additions & 0 deletions mdsf/src/filetype/generated_file_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,8 @@ pub fn language_to_ext(language: &str) -> Option<&'static str> {
"glyph bitmap distribution format" => Some(".bdf"),
"glyph" => Some(".glf"),
"gn" => Some(".gn"),
"gno" => Some(".gno"),
"gnolang" => Some(".gno"),
"gnu asm" => Some(".s"),
"gnuplot" => Some(".gp"),
"go template" => Some(".gohtml"),
Expand Down Expand Up @@ -1544,6 +1546,8 @@ mod test_language_to_ext {
("glyph bitmap distribution format", ".bdf"),
("glyph", ".glf"),
("gn", ".gn"),
("gno", ".gno"),
("gnolang", ".gno"),
("gnu asm", ".s"),
("gnuplot", ".gp"),
("go template", ".gohtml"),
Expand Down