diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 025bfd3..0958861 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,6 +38,7 @@ jobs: run: | curl -ssL https://magic.modular.com | bash source $HOME/.bash_profile + magic self-update --version 0.2.3 # Temporary method to fetch the rattler binary. RATTLER_BINARY="rattler-build-aarch64-apple-darwin" diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index c312064..9e274b2 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -38,6 +38,7 @@ jobs: run: | curl -ssL https://magic.modular.com | bash source $HOME/.bash_profile + magic self-update --version 0.2.3 # Temporary method to fetch the rattler binary. RATTLER_BINARY="rattler-build-aarch64-apple-darwin" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 713f740..8ac8fb1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -34,4 +34,5 @@ jobs: - name: Run tests run: | source $HOME/.bash_profile + magic self-update --version 0.2.3 magic run tests diff --git a/src/prism/args.mojo b/src/prism/args.mojo index 657fd94..c51e602 100644 --- a/src/prism/args.mojo +++ b/src/prism/args.mojo @@ -133,7 +133,7 @@ fn range_args[minimum: Int, maximum: Int]() -> ArgValidator: return range_n_args -# TODO: Having some issues with varadic list of functions, so using List for now +# TODO: Having some issues with varadic list of functions, so using List for now. fn match_all[arg_validators: List[ArgValidator]]() -> ArgValidator: """Returns an error if any of the arg_validators return an error.