From d950fafb1048ea3d36fab4a3af45b16699754bc3 Mon Sep 17 00:00:00 2001 From: Mikhail Tavarez Date: Fri, 3 May 2024 09:29:48 -0500 Subject: [PATCH] update readme --- .github/workflows/test.yml | 4 ++-- README.md | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2bb0f1b..48428e0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,11 +13,11 @@ jobs: run: | curl https://get.modular.com | MODULAR_AUTH=${{ secrets.MODULAR_AUTH }} sh - modular auth ${{ secrets.MODULAR_AUTH }} - modular install nightly/mojo + modular install mojo pip install pytest pip install git+https://github.com/guidorice/mojo-pytest.git - name: Unit Tests run: | export MODULAR_HOME="/home/runner/.modular" - export PATH="/home/runner/.modular/pkg/packages.modular.com_nightly_mojo/bin:$PATH" + export PATH="/home/runner/.modular/pkg/packages.modular.com_mojo/bin:$PATH" pytest diff --git a/README.md b/README.md index 789bf82..356b060 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,6 @@ Experiments in porting over Golang stdlib into Mojo and extra goodies that make use of it. It will not always be a 1:1 port, it's more so code inspired by the Golang stdlib and the Mojo community's code. This is not intended to be a full port, but rather a learning exercise and a way to experiment with Mojo's capabilities. Please feel free to contribute or use this as a starting point for your own projects! The codebase will remain in flux and will evolve with Mojo as future releases are created. -NOTE: This does not work on Mojo 24.2, you must use the nightly build for now. This will be resolved in the next Mojo release. - ## Projects that use Gojo ### My projects @@ -11,6 +9,7 @@ NOTE: This does not work on Mojo 24.2, you must use the nightly build for now. T - `weave`: A collection of (ANSI-sequence aware) text reflow operations & algorithms. [Link to the project.](https://github.com/thatstoasty/weave) - `mog`: Terminal text styling library. [Link to the project.](https://github.com/thatstoasty/mog) - `stump`: Bound Logger library. [Link to the project.](https://github.com/thatstoasty/stump) +- `prism`: CLI Library. [Link to the project.](https://github.com/thatstoasty/prism) ### Community projects