test: configure a github actions job #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
name: Test Setup Mojo Action | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Mojo | |
uses: kszucs/setup-mojo@main | |
with: | |
version: '2024.7.1805' | |
- name: Verify Mojo installation | |
run: | | |
mojo --version | |
echo "Modular Home: $MODULAR_HOME" | |
- name: Test Firebolt | |
run: | | |
mojo test firebolt -I . |