Skip to content

Commit

Permalink
using if syntax from gmt ci file
Browse files Browse the repository at this point in the history
  • Loading branch information
vtnate committed Oct 11, 2023
1 parent 5edc1a4 commit 36031bd
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 @@ -47,12 +47,13 @@ jobs:
bundle exec certified-update
- name: Install Python dependencies
run: |
if ${{ matrix.simulation-type }} == electric ; then
if [ '${{ matrix.simulation-type }}' == 'electric' ]; then
echo 'Installing Python dependencies'
bundle exec uo install_python
fi
- name: Test project setup
run: |
if ${{ matrix.simulation-type }} == electric ; then
if [ '${{ matrix.simulation-type }}' == 'electric' ]; then
echo 'this type is ${{ matrix.simulation-type }}'
bundle exec rspec -e 'Admin'
bundle exec rspec -e 'Create project'
Expand Down

0 comments on commit 36031bd

Please sign in to comment.