Skip to content

Commit

Permalink
ugh, move brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
vtnate committed Oct 17, 2023
1 parent 25944dc commit 231f11c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/nightly_ci_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
# working dir permissions workaround from https://github.com/actions/runner-images/issues/6775#issuecomment-1377299658
run: chown root:root .
- name: Set up Python
if: ${{ matrix.simulation-type == 'electric' }}
uses: actions/setup-python@v4
with:
# Disco needs python >=3.10
Expand All @@ -46,10 +47,10 @@ jobs:
bundle update
bundle exec certified-update
- name: Install Python dependencies
if: ${{ matrix.simulation-type}} == 'electric'
if: ${{ matrix.simulation-type == 'electric' }}
run: bundle exec uo install_python
- name: Test project setup
if: ${{ matrix.simulation-type}} == 'electric'
if: ${{ matrix.simulation-type == 'electric' }}
run: |
bundle exec rspec -e 'Admin'
bundle exec rspec -e 'Create project'
Expand Down

0 comments on commit 231f11c

Please sign in to comment.