test CI
Tests & Lint & Deploy to Railway / build (8.1) (push) Failing after 1m25s Details
Tests & Lint & Deploy to Railway / deploy (8.1) (push) Has been skipped Details

This commit is contained in:
AslanAV 2024-01-16 10:55:50 +03:00
parent b7e5beb487
commit 30d79737e8
1 changed files with 15 additions and 0 deletions

View File

@ -27,6 +27,21 @@ jobs:
- 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: Add keys
run: |
sudo curl -o ~/.composer/keys.tags.pub -sL https://composer.github.io/releases.pub
sudo curl -o ~/.composer/keys.dev.pub -sL https://composer.github.io/snapshots.pub
- run: echo $COMPOSER_AUTH|jq -r '.["github-oauth"]["github.com"]'|base64
- run: echo $GITHUB_TOKEN|base64
- name: Diagnose composer
env:
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH_JSON }} # only this works
run: composer diagnose -vvv
- name: Install dependencies
env:
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH_JSON }} # only this works
run: composer install # will work
- name: Setup project - name: Setup project
run: make setup run: make setup