feat: quick and dirty github step to install nightly mojo #5
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
name: Test Setup Mojo Action | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Mojo | |
uses: ./ | |
with: | |
version: '2024.7.1805' | |
- name: Verify Mojo installation | |
run: | | |
mojo --version | |
echo "Modular Home: $MODULAR_HOME" |