Skip to content

Commit

Permalink
add a test project with a unicode symbol to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi authored and lpil committed Dec 7, 2024
1 parent 323215f commit a965f8e
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ⭐
4 changes: 4 additions & 0 deletions test/unicode_path ⭐/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.beam
*.ez
/build
erl_crash.dump
4 changes: 4 additions & 0 deletions test/unicode_path ⭐/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.PHONY: build
build:
rm -fr build
cargo run --quiet -- build --target erlang
2 changes: 2 additions & 0 deletions test/unicode_path ⭐/gleam.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
name = "unicode_path"
version = "1.0.0"
7 changes: 7 additions & 0 deletions test/unicode_path ⭐/manifest.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Gleam
# You typically do not need to edit this file

packages = [
]

[requirements]
3 changes: 3 additions & 0 deletions test/unicode_path ⭐/src/unicode_path.gleam
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pub fn main() {
Nil
}

0 comments on commit a965f8e

Please sign in to comment.