diff --git a/.github/actions/run_samples/action.yml b/.github/actions/run_samples/action.yml index d71b55b..687112d 100644 --- a/.github/actions/run_samples/action.yml +++ b/.github/actions/run_samples/action.yml @@ -1,14 +1,6 @@ name: "run-samples" description: "Download a previously-generated psyc and try to compile some stuff with it." -inputs: - build_config: - required: true - type: string - compiler: - required: true - type: string - runs: using: "composite" steps: diff --git a/.github/workflows/ci_linux.yml b/.github/workflows/ci_linux.yml index 4604831..d4822f1 100644 --- a/.github/workflows/ci_linux.yml +++ b/.github/workflows/ci_linux.yml @@ -56,14 +56,11 @@ jobs: - name: Retrieve psyc uses: actions/download-artifact@v4 with: - name: psyc_${{ inputs.compiler }}_${{ inputs.build_config }} + name: psyc_${{ matrix.compiler }}_${{ matrix.build_config }} - name: Prepare shell: bash run: sudo chmod +x psyc - name: 'Run Samples' - uses: ./.github/actions/run_samples - with: - compiler: ${{ matrix.compiler }} - build_config: ${{ matrix.build_config }} \ No newline at end of file + uses: ./.github/actions/run_samples \ No newline at end of file