Skip to content

Commit

Permalink
try another if syntax inside CI file
Browse files Browse the repository at this point in the history
  • Loading branch information
vtnate committed Oct 10, 2023
1 parent 0372118 commit 56d6e2f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/nightly_ci_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,10 @@ jobs:
bundle update
bundle exec certified-update
- name: Install python dependencies
if: ${{ matrix.simulation-type }} == 'electric'
run: bundle exec uo install_python
run: |
if [[ "${{ matrix.simulation-type }}" == 'electric' ]]; then
bundle exec uo install_python
fi
- name: Run Rspec
run: bundle exec rspec --example 'Run and work with a small ${{ matrix.simulation-type }} simulation'
- name: Upload artifacts
Expand Down

0 comments on commit 56d6e2f

Please sign in to comment.