Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yet another syntax for if statement in GHA config
Browse files Browse the repository at this point in the history
vtnate committed Oct 11, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 36031bd commit 029ae62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nightly_ci_build.yml
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
# Disco needs python 3.10
# Disco needs python >=3.10
python-version: '3.10'
- name: Install Ruby dependencies
run: |
@@ -53,7 +53,7 @@ jobs:
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'

0 comments on commit 029ae62

Please sign in to comment.