Skip to content

Run application tests. #25

Run application tests.

Run application tests. #25

Workflow file for this run

name: pipeline
on:
push:
branches:
- '*'
jobs:
# security:
# name: gitleaks
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: gitleaks/gitleaks-action@v2
# env:
# GITHUB_TOKEN: ${{ github.token }}
#
# - name: Notify
# if: always()
# uses: ravsamhq/notify-slack-action@v1
# with:
# status: ${{ job.status }}
# notify_when: 'failure'
# notification_title: '{workflow} has {status_message}'
# message_format: ':warning: LEAKED SECRETS in *{workflow}* (<{repo_url}|{repo}>)'
# env:
# SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
linter:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ./application/vendor
key: composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
composer-
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
tools: composer:v2
coverage: none
- name: Install Project Dependencies
working-directory: ./application
run: composer install
- name: Run linter
working-directory: ./application
run: ./vendor/bin/php-cs-fixer fix app/
- name: Commit linted files
id: auto-commit-action
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Fix code styling
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ./application/vendor
key: composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
composer-
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
tools: composer:v2
coverage: none
- name: Install Project Dependencies
working-directory: ./application
run: composer install
- name: Run tests
working-directory: ./application
run: php artisan test
# build-check-push-image:
# runs-on: ubuntu-latest
# defaults:
# run:
# working-directory: ./application
# needs: [ security ]
# steps:
# - uses: actions/checkout@v4
#
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v3
#
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v3
#
# - name: Build
# uses: docker/build-push-action@v5
# id: build
# with:
# context: "{{defaultContext}}:application"
# tags: dvdty/branch-deploy-application:${{ github.head_ref || github.ref_name }}
# load: true
#
# - name: Scan image
# uses: aquasecurity/trivy-action@master
# with:
# image-ref: ${{ steps.build.outputs.imageid }}
# format: 'table'
# exit-code: '1'
# ignore-unfixed: true
# vuln-type: 'os,library'
# severity: 'CRITICAL'
#
# - name: Login to Docker Hub
# uses: docker/login-action@v3
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
#
# - name: Push
# uses: docker/build-push-action@v5
# with:
# context: "{{defaultContext}}:application"
# push: true
# tags: dvdty/branch-deploy-application:${{ github.head_ref || github.ref_name }}