name: Tests & Lint & Deploy to Railway on: push: branches: - main pull_request: branches: - main jobs: build: runs-on: ubuntu-latest strategy: matrix: php-versions: [ '8.2' ] steps: - uses: actions/checkout@v3 - name: Set up PHP ${{ matrix.php-versions }} uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} - name: PHP Security Checker 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 sqlite3 driver run: apt install php-sqlite3 - name: Setup project run: make setup - name: Check lint run: make lint - name: Check tests run: make test deploy: needs: build runs-on: ubuntu-latest strategy: matrix: php-versions: [ '8.1' ] steps: - uses: actions/checkout@v3 - name: Set up PHP ${{ matrix.php-versions }} uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} github_token: ${{ secrets.COMPOSER_GITHUB_TOKEN }} tools: composer, phpcs, phpstan, phpunit, symfony - name: PHP Security Checker uses: StephaneBour/actions-php-security-checker@1.1 - name: Deploy to Server uses: easingthemes/ssh-deploy@main env: SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} ARGS: "-rlgoDzvc -i --delete" SOURCE: "dist/" REMOTE_HOST: ${{ secrets.REMOTE_HOST }} REMOTE_USER: ${{ secrets.REMOTE_USER }} TARGET: ${{ secrets.REMOTE_TARGET }} EXCLUDE: "/dist/, /node_modules/"