Skip to content

Commit d8719ec

Browse files
committed
f
1 parent 9df288e commit d8719ec

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/pull-request-test-bsk-rl-ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,38 @@ jobs:
7272
run: |
7373
cd bsk_rl/docs
7474
make html
75+
76+
test-bsk-rl-tests:
77+
name: Test BSK-RL Pytest
78+
needs: build-ubuntu-latest-wheels
79+
runs-on: ubuntu-latest
80+
strategy:
81+
matrix:
82+
python-version: ["3.11"]
83+
test-index: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10"]
84+
steps:
85+
- name: Set up Python ${{ matrix.python-version }}
86+
uses: actions/setup-python@v5
87+
with:
88+
python-version: ${{ matrix.python-version }}
89+
- name: Pull Artifact
90+
uses: actions/download-artifact@v4
91+
with:
92+
name: basilisk-wheels_ubuntu-22.04_python${{ matrix.python-version }}
93+
- name: Install Basilisk from wheels
94+
shell: bash
95+
run: |
96+
pip install *asilisk*.whl
97+
bskLargeData
98+
- name: Clone BSK-RL
99+
uses: actions/checkout@v4
100+
with:
101+
repository: AVSLab/bsk_rl
102+
path: bsk_rl
103+
- name: Install BSK-RL
104+
run: |
105+
cd bsk_rl
106+
pip install -e '.[all,rllib,docs]' && finish_install
75107
- name: Pytest
76108
run: |
77109
cd bsk_rl

0 commit comments

Comments
 (0)