Skip to content

Commit

Permalink
👷 Update CI to clone and install mooseherder and catbird
Browse files Browse the repository at this point in the history
  • Loading branch information
lukethehuman committed Mar 4, 2024
1 parent 27a6625 commit f02afc9
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,25 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Create venv and install
- name: Create venv and install sledo
run: |
python -m venv venv
. venv/bin/activate
pip install .
pip install .[test]
- name: Clone and install mooseherder
run: |
cd ..
git clone https://github.com/ScepticalRabbit/mooseherder
cd sledo
pip install ../mooseherder
- name: Clone and install catbird
run: |
cd ..
git clone https://github.com/helen-brooks/catbird
cd sledo
pip install ../catbird
- name: Run linter
run: |
Expand Down

0 comments on commit f02afc9

Please sign in to comment.