From 060a804f383110114d886e78076e93fe447254dd Mon Sep 17 00:00:00 2001
From: Brian Cherinka <havok2063@hotmail.com>
Date: Wed, 29 Nov 2023 10:32:53 -0500
Subject: [PATCH] testing new tree workflow

---
 .github/workflows/build.yml | 22 ++++++++++++++++++++--
 1 file changed, 20 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index ff99baf..81bda74 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -6,12 +6,30 @@ name: Build and Test
 on: [push, pull_request]
 
 jobs:
-  build:
+  tree:
+    runs-on: ubuntu-latest
+    steps:
+    - name: Clone tree
+      uses: actions/checkout@v4
+      with:
+        repository: sdss/tree
+        path: tree
+    - name: Set up Python 3.9
+      uses: actions/setup-python@v4
+      with:
+        python-version: 3.9
+    - name: Install tree package
+      run: |
+        python -m pip install --upgrade pip
+        cd tree
+        pip install .
 
+  build:
+    needs: tree
     runs-on: ubuntu-latest
 
     steps:
-    - uses: actions/checkout@v3
+    - uses: actions/checkout@v4
     - name: Set up Python 3.9
       uses: actions/setup-python@v4
       with: