Skip to content

Commit

Permalink
testing new tree workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
havok2063 committed Nov 29, 2023
1 parent c9a6c12 commit 060a804
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 060a804

Please sign in to comment.