From 3e31ef4e7c559fe8f68fcc74e6a1f3f0ea938c47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20W=C3=BChr?= Date: Fri, 13 Sep 2024 08:12:16 +0200 Subject: [PATCH] Create project --- .github/workflows/test.yml | 23 +++++++++++++++++++++++ .gitignore | 4 ++++ README.md | 24 ++++++++++++++++++++++++ gleam.toml | 19 +++++++++++++++++++ src/brilo.gleam | 5 +++++ test/brilo_test.gleam | 12 ++++++++++++ 6 files changed, 87 insertions(+) create mode 100644 .github/workflows/test.yml create mode 100644 .gitignore create mode 100644 README.md create mode 100644 gleam.toml create mode 100644 src/brilo.gleam create mode 100644 test/brilo_test.gleam diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..06d00ad --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,23 @@ +name: test + +on: + push: + branches: + - master + - main + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: erlef/setup-beam@v1 + with: + otp-version: "26.0.2" + gleam-version: "1.4.1" + rebar3-version: "3" + # elixir-version: "1.15.4" + - run: gleam deps download + - run: gleam test + - run: gleam format --check src test diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..599be4e --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.beam +*.ez +/build +erl_crash.dump diff --git a/README.md b/README.md new file mode 100644 index 0000000..f5e7d43 --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ +# brilo + +[![Package Version](https://img.shields.io/hexpm/v/brilo)](https://hex.pm/packages/brilo) +[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/brilo/) + +```sh +gleam add brilo@1 +``` +```gleam +import brilo + +pub fn main() { + // TODO: An example of the project in use +} +``` + +Further documentation can be found at . + +## Development + +```sh +gleam run # Run the project +gleam test # Run the tests +``` diff --git a/gleam.toml b/gleam.toml new file mode 100644 index 0000000..67f2b96 --- /dev/null +++ b/gleam.toml @@ -0,0 +1,19 @@ +name = "brilo" +version = "1.0.0" + +# Fill out these fields if you intend to generate HTML documentation or publish +# your project to the Hex package manager. +# +# description = "" +# licences = ["Apache-2.0"] +# repository = { type = "github", user = "", repo = "" } +# links = [{ title = "Website", href = "" }] +# +# For a full reference of all the available options, you can have a look at +# https://gleam.run/writing-gleam/gleam-toml/. + +[dependencies] +gleam_stdlib = ">= 0.34.0 and < 2.0.0" + +[dev-dependencies] +gleeunit = ">= 1.0.0 and < 2.0.0" diff --git a/src/brilo.gleam b/src/brilo.gleam new file mode 100644 index 0000000..ca67592 --- /dev/null +++ b/src/brilo.gleam @@ -0,0 +1,5 @@ +import gleam/io + +pub fn main() { + io.println("Hello from brilo!") +} diff --git a/test/brilo_test.gleam b/test/brilo_test.gleam new file mode 100644 index 0000000..3831e7a --- /dev/null +++ b/test/brilo_test.gleam @@ -0,0 +1,12 @@ +import gleeunit +import gleeunit/should + +pub fn main() { + gleeunit.main() +} + +// gleeunit test functions end in `_test` +pub fn hello_world_test() { + 1 + |> should.equal(1) +}