diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index 074c2c01d..a33f750db 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -9,7 +9,7 @@ inputs: partial: description: Skip the installation of extra dependencies required: false - default: true + default: false runs: using: "composite" @@ -46,21 +46,21 @@ runs: - name: Install pylint run: python3 -m pip install pylint shell: bash - if: ${{ inputs.partial == 'true' }} + if: ${{ inputs.partial == 'false' }} - name: Install pnpm run: npm i -g pnpm shell: bash - if: ${{ inputs.partial == 'true' }} + if: ${{ inputs.partial == 'false' }} - name: Setup Rust uses: ATiltedTree/setup-rust@v1 with: rust-version: stable components: clippy - if: ${{ inputs.partial == 'true' }} + if: ${{ inputs.partial == 'false' }} - name: Install RTI run: | cd lingua-franca .github/actions/install-rti/install.sh cd .. shell: bash - if: ${{ (runner.os == 'macOS' || runner.os == 'Linux') && inputs.partial == 'true' }} + if: ${{ (runner.os == 'macOS' || runner.os == 'Linux') && inputs.partial == 'false' }}