This commit is contained in:
aslan 2024-02-10 14:10:13 +03:00
parent 95f2c72231
commit 03690516f5
1 changed files with 22 additions and 23 deletions

View File

@ -19,27 +19,26 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: add GITHUB_TOKEN
run: echo ${{ secrets.GH_TOKEN }} - name: Set up PHP ${{ matrix.php-versions }}
# - name: Set up PHP ${{ matrix.php-versions }} uses: shivammathur/setup-php@v2
# uses: shivammathur/setup-php@v2 with:
# with: php-version: ${{ matrix.php-versions }}
# php-version: ${{ matrix.php-versions }} coverage: xdebug
# coverage: xdebug extensions: :opcache, mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite
# extensions: :opcache, mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite tools: composer:v2.6.6
# tools: composer:v2.6.6 ini-values: opcache.enable_cli=1, opcache.jit=tracing, opcache.jit_buffer_size=64M
# ini-values: opcache.enable_cli=1, opcache.jit=tracing, opcache.jit_buffer_size=64M env:
# env: GITHUB_TOKEN: ${{ secrets.GITHUBTOKEN }}
# GITHUB_TOKEN: ${{ secrets.GITHUBTOKEN }} debug: true
# debug: true
# - name: PHP Security Checker
# - name: PHP Security Checker uses: StephaneBour/actions-php-security-checker@1.1
# uses: StephaneBour/actions-php-security-checker@1.1
# - name: Use Node.js ${{ matrix.node-version }}
# - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3
# uses: actions/setup-node@v3 with:
# with: node-version: ${{ matrix.node-version }}
# node-version: ${{ matrix.node-version }}
# - name: Add keys # - name: Add keys
# run: | # run: |
@ -56,8 +55,8 @@ jobs:
# COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH_JSON }} # only this works # COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH_JSON }} # only this works
# run: composer install # will work # run: composer install # will work
# - name: add GITHUB_TOKEN - name: add GITHUB_TOKEN
# run: composer config --global github-oauth.github.com ${{ secrets.GITHUBTOKEN }} && echo ${{ secrets.GITHUBTOKEN }} run: composer config --global github-oauth.github.com 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
# #
# - name: Setup project # - name: Setup project
# run: make setup # run: make setup