diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 23daee979f7..202c5ef68ae 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -427,3 +427,7 @@ jobs: - name: Test FFI in subdirectories run: make working-directory: ./test/subdir_ffi + + - name: test/unicode_path + run: make + working-directory: ./test/unicode_path ⭐ diff --git "a/test/unicode_path \342\255\220/.gitignore" "b/test/unicode_path \342\255\220/.gitignore" new file mode 100644 index 00000000000..599be4eb929 --- /dev/null +++ "b/test/unicode_path \342\255\220/.gitignore" @@ -0,0 +1,4 @@ +*.beam +*.ez +/build +erl_crash.dump diff --git "a/test/unicode_path \342\255\220/Makefile" "b/test/unicode_path \342\255\220/Makefile" new file mode 100644 index 00000000000..88925a28d49 --- /dev/null +++ "b/test/unicode_path \342\255\220/Makefile" @@ -0,0 +1,4 @@ +.PHONY: build +build: + rm -fr build + cargo run --quiet -- build --target erlang diff --git "a/test/unicode_path \342\255\220/gleam.toml" "b/test/unicode_path \342\255\220/gleam.toml" new file mode 100644 index 00000000000..eec4dce395a --- /dev/null +++ "b/test/unicode_path \342\255\220/gleam.toml" @@ -0,0 +1,2 @@ +name = "unicode_path" +version = "1.0.0" \ No newline at end of file diff --git "a/test/unicode_path \342\255\220/manifest.toml" "b/test/unicode_path \342\255\220/manifest.toml" new file mode 100644 index 00000000000..c5d779a3f81 --- /dev/null +++ "b/test/unicode_path \342\255\220/manifest.toml" @@ -0,0 +1,7 @@ +# This file was generated by Gleam +# You typically do not need to edit this file + +packages = [ +] + +[requirements] diff --git "a/test/unicode_path \342\255\220/src/unicode_path.gleam" "b/test/unicode_path \342\255\220/src/unicode_path.gleam" new file mode 100644 index 00000000000..4ead3b10c42 --- /dev/null +++ "b/test/unicode_path \342\255\220/src/unicode_path.gleam" @@ -0,0 +1,3 @@ +pub fn main() { + Nil +}