Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

add a test project with a unicode symbol to ci

+24
+4
.github/workflows/ci.yaml
··· 427 427 - name: Test FFI in subdirectories 428 428 run: make 429 429 working-directory: ./test/subdir_ffi 430 + 431 + - name: test/unicode_path 432 + run: make 433 + working-directory: ./test/unicode_path ⭐
+4
test/unicode_path ⭐/.gitignore
··· 1 + *.beam 2 + *.ez 3 + /build 4 + erl_crash.dump
+4
test/unicode_path ⭐/Makefile
··· 1 + .PHONY: build 2 + build: 3 + rm -fr build 4 + cargo run --quiet -- build --target erlang
+2
test/unicode_path ⭐/gleam.toml
··· 1 + name = "unicode_path" 2 + version = "1.0.0"
+7
test/unicode_path ⭐/manifest.toml
··· 1 + # This file was generated by Gleam 2 + # You typically do not need to edit this file 3 + 4 + packages = [ 5 + ] 6 + 7 + [requirements]
+3
test/unicode_path ⭐/src/unicode_path.gleam
··· 1 + pub fn main() { 2 + Nil 3 + }