Skip to content

Commit

Permalink
test: configure a github actions job
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Jul 21, 2024
1 parent 61b40f1 commit b70ddd7
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
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: Install PyArrow
run: |
pip install pyarrow
- name: Test Firebolt
run: |
mojo test firebolt -I .

0 comments on commit b70ddd7

Please sign in to comment.