-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* init gleam * init ignore * add links in relevant places * Added the start of the readme and the test checkout workflow * See if the pink heart with stars will render in gh? (they do!) * Name the gleam colours * Pick the palette for gleam * Fix link to addr the new img
- Loading branch information
Showing
19 changed files
with
337 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ body: | |
options: | ||
- ALL/ANY | ||
- C# | ||
- Gleam | ||
- Go | ||
- Java | ||
- JavaScript | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ body: | |
- OTHER | ||
- GitHub Actions | ||
- C# | ||
- Gleam | ||
- Go | ||
- Java | ||
- JavaScript | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Gleam 💖⭐💖 Tests 🦂 | ||
on: | ||
push: | ||
branches-ignore: | ||
- 'main' | ||
paths: | ||
- 'gleam/**' | ||
- '!gleam/**.md' | ||
- '!gleam/.vscode/**' | ||
- '.github/workflows/gleam-*' | ||
pull_request: | ||
branches: | ||
- 'main' | ||
paths: | ||
- 'gleam/**' | ||
- '!gleam/**.md' | ||
- '!gleam/.vscode/**' | ||
- '.github/workflows/gleam-*' | ||
schedule: # 9AM on the 15th | ||
- cron: 0 22 14 1,2,3,10,11,12 * # AEDT Months | ||
- cron: 0 23 14 4,5,6,7,8,9 * # AEST Months | ||
workflow_call: | ||
permissions: {} | ||
defaults: | ||
run: | ||
shell: bash | ||
working-directory: gleam | ||
env: | ||
development_gleam_version: 1 | ||
jobs: | ||
quick-test: | ||
name: Gleam 💖⭐💖 Quick Test 🦂 | ||
if: ${{ github.event_name == 'push' && !(github.event.ref == 'refs/heads/main') }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 🏁 Checkout | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
################################################################################ | ||
# https://github.com/github/gitignore/blob/main/Erlang.gitignore | ||
# < there is no "gleam" ignore file present, so take common beam ones for now. | ||
################################################################################ | ||
.eunit | ||
*.o | ||
*.beam | ||
*.plt | ||
erl_crash.dump | ||
.concrete/DEV_MODE | ||
|
||
# rebar 2.x | ||
.rebar | ||
rel/example_project | ||
ebin/*.beam | ||
deps | ||
|
||
# rebar 3 | ||
.rebar3 | ||
_build/ | ||
_checkouts/ | ||
|
||
################################################################################ | ||
# https://github.com/github/gitignore/blob/main/Elixir.gitignore | ||
################################################################################ | ||
/_build | ||
/cover | ||
/deps | ||
/doc | ||
/.fetch | ||
erl_crash.dump | ||
*.ez | ||
*.beam | ||
/config/*.secret.exs | ||
.elixir_ls/ |
Empty file.
Oops, something went wrong.