diff options
author | jld3103 <jld3103yt@gmail.com> | 2023-08-04 15:15:48 +0200 |
---|---|---|
committer | jld3103 <jld3103yt@gmail.com> | 2023-08-11 13:31:34 +0200 |
commit | 2b719c7a7b672e55b3c3761c99af719312fd5538 (patch) | |
tree | 5e0d6a02fcb02e3e29ef299b10f4c4ae99469966 /.github | |
parent | 11fd1f0ac1f257ec094bd2c705d90c6b45504628 (diff) | |
download | nextcloud-server-2b719c7a7b672e55b3c3761c99af719312fd5538.tar.gz nextcloud-server-2b719c7a7b672e55b3c3761c99af719312fd5538.zip |
Add OpenAPI CI
Signed-off-by: jld3103 <jld3103yt@gmail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/openapi.yml | 80 |
1 files changed, 6 insertions, 74 deletions
diff --git a/.github/workflows/openapi.yml b/.github/workflows/openapi.yml index 22a1a69a977..aa149e6a7fc 100644 --- a/.github/workflows/openapi.yml +++ b/.github/workflows/openapi.yml @@ -1,4 +1,4 @@ -name: Psalm static code analysis +name: OpenAPI on: pull_request: @@ -8,7 +8,7 @@ on: - stable* jobs: - static-code-analysis: + openapi: runs-on: ubuntu-latest if: ${{ github.repository_owner != 'nextcloud-gmbh' }} @@ -16,14 +16,12 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - with: - submodules: true - name: Set up php uses: shivammathur/setup-php@v2 with: - php-version: '8.0' - extensions: apcu,ctype,curl,dom,fileinfo,ftp,gd,intl,json,ldap,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip + php-version: '8.2' + extensions: xml coverage: none env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -31,71 +29,5 @@ jobs: - name: Composer install run: composer i - - name: Psalm - run: composer run psalm:ci -- --monochrome --no-progress --output-format=github --update-baseline --report=results.sarif - - - name: Show potential changes in Psalm baseline - if: always() - run: git diff -- . ':!lib/composer' - - - name: Upload Analysis results to GitHub - if: always() - uses: github/codeql-action/upload-sarif@v2 - with: - sarif_file: results.sarif - - static-code-analysis-security: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v3 - with: - submodules: true - - - name: Set up php - uses: shivammathur/setup-php@master - with: - php-version: '8.0' - extensions: ctype,curl,dom,fileinfo,ftp,gd,intl,json,ldap,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip - coverage: none - - - name: Composer install - run: composer i - - - name: Psalm taint analysis - run: composer run psalm:ci -- --monochrome --no-progress --output-format=github --report=results.sarif --taint-analysis - - - name: Upload Security Analysis results to GitHub - if: always() - uses: github/codeql-action/upload-sarif@v2 - with: - sarif_file: results.sarif - - static-code-analysis-ocp: - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - submodules: true - - - name: Set up php - uses: shivammathur/setup-php@v2 - with: - php-version: '8.0' - extensions: ctype,curl,dom,fileinfo,gd,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip - coverage: none - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Composer install - run: composer i - - - name: Psalm - run: composer run psalm:ci -- -c psalm-ocp.xml --monochrome --no-progress --output-format=github --update-baseline - - - name: Show potential changes in Psalm baseline - if: always() - run: git diff -- . ':!lib/composer' + - name: OpenAPI checker + run: build/openapi-checker.sh |