Skip to content

Commit

Permalink
format variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Angelyr committed Oct 24, 2024
1 parent 1ebb099 commit c6f2157
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/actions/install-repo/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ runs:
key: build-${{inputs.repo-name}}
path: ${{ runner.temp }}/build-${{inputs.repo-name}}

- if: [format('false', inputs.repo-name)]
- if: ${{format('false', inputs.repo-name)}}
shell: bash
run: echo "hello false"

- if: [format('true', inputs.repo-name)]
- if: ${{format('true', inputs.repo-name)}}
shell: bash
run: echo "hello true"

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:

steps:

- name: Update packages
run: sudo apt-get update
# - name: Update packages
# run: sudo apt-get update

- name: Install mpi
run: sudo apt-get install -yq mpich libmpich-dev
# - name: Install mpi
# run: sudo apt-get install -yq mpich libmpich-dev

- name: Install Valgrind
run: sudo apt-get install -yq valgrind
# - name: Install Valgrind
# run: sudo apt-get install -yq valgrind

- uses: actions/checkout@v4

Expand Down

0 comments on commit c6f2157

Please sign in to comment.