diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f0a05ff..a6b96a7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -267,13 +267,16 @@ jobs: sudo aa-disable /usr/sbin/unix_chkpwd if: ${{ startsWith(matrix.platform, 'fedora') }} - name: Run molecule tests - run: >- + run: | molecule test --platform-name ${{ matrix.platform }}-${{ matrix.architecture }} --scenario-name ${{ matrix.scenario }} + # TODO: Remove the apt-get install command when possible. See + # cisagov/skeleton-ansible-role#215 for more details. - name: Re-enable unix-chkpwd AppArmor profile - run: >- + run: | sudo aa-enforce /usr/sbin/unix_chkpwd + sudo apt-get install firefox passt if: ${{ startsWith(matrix.platform, 'fedora') }} - name: Setup tmate debug session uses: mxschmitt/action-tmate@v3