Skip to content

tibaredha is testing out github action #25

tibaredha is testing out github action

tibaredha is testing out github action #25

Workflow file for this run

name: PHP Composer
run-name: ${{ github.actor }} is testing out github action
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: run echo
run: echo "tibaredha"
- name: add github repository
run: echo " the ${{ github.repository }} repository has been cloned to the runer"
- name: is ready
run: echo "the workflow is now ready to test your code on the runer "
- name: list files in repository
run: |
ls ${{ github.workspace }}
- name: job status
run: echo "this jobs status is ${{ job.status }}"
#- name: Validate composer.json and composer.lock
#run: composer validate --strict
#- name: Cache Composer packages
#id: composer-cache
#uses: actions/cache@v3
#with:
#path: vendor
#key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
#restore-keys: |
#${{ runner.os }}-php-
#- name: Install dependencies
#run: composer install --prefer-dist --no-progress
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
# Docs: https://getcomposer.org/doc/articles/scripts.md
# - name: Run test suite
# run: composer run-script test