diff --git a/.github/actions/generate-and-test/action.yml b/.github/actions/generate-and-test/action.yml index 3776cc264c6..803288aa4b1 100644 --- a/.github/actions/generate-and-test/action.yml +++ b/.github/actions/generate-and-test/action.yml @@ -8,12 +8,17 @@ runs: steps: - run: cp -r /root/. $HOME # Workaround, because $HOME is set to /github/home inside the action run - name: "client" + shell: bash run: ./scripts/generate-and-test.sh ${{ inputs.language }} latest client - name: "keto" + shell: bash run: ./scripts/generate-and-test.sh ${{ inputs.language }} latest keto - name: "kratos" + shell: bash run: ./scripts/generate-and-test.sh ${{ inputs.language }} latest kratos - name: "hydra" + shell: bash run: ./scripts/generate-and-test.sh ${{ inputs.language }} latest hydra - name: "oathkeeper" + shell: bash run: ./scripts/generate-and-test.sh ${{ inputs.language }} latest oathkeeper diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 029c7fc9037..092b801d9e5 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -3,32 +3,32 @@ on: pull_request: jobs: - test: - runs-on: ubuntu-latest - container: oryd/sdk:v0.0.53 - defaults: - run: - shell: bash - strategy: - matrix: - language: - [ - "elixir", - "typescript", - "rust", - "golang", - "java", - "php", - "python", - "dotnet", - "dart", - ] - steps: - - uses: actions/checkout@v4 - - name: Generate and Test - ${{ matrix.language }} - uses: ./.github/actions/generate-and-test - with: - language: ${{ matrix.language }} + # test: + # runs-on: ubuntu-latest + # container: oryd/sdk:v0.0.53 + # defaults: + # run: + # shell: bash + # strategy: + # matrix: + # language: + # [ + # "elixir", + # "typescript", + # "rust", + # "golang", + # "java", + # "php", + # "python", + # "dotnet", + # "dart", + # ] + # steps: + # - uses: actions/checkout@v4 + # - name: Generate and Test - ${{ matrix.language }} + # uses: ./.github/actions/generate-and-test + # with: + # language: ${{ matrix.language }} test-ruby: runs-on: ubuntu-latest steps: