test CI
This commit is contained in:
parent
b7e5beb487
commit
30d79737e8
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue