Skip to content

Commit

Permalink
update template
Browse files Browse the repository at this point in the history
  • Loading branch information
shrey141102 committed Dec 11, 2023
1 parent fdf075a commit d397dfb
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 0 deletions.
Binary file added .github/.DS_Store
Binary file not shown.
13 changes: 13 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## Describe your changes (Mandatory)

## Issue ticket number and link (Mandatory)

## Screenshots of your project output, whatever you have added. (Mandatory)

## Checklist before requesting a review
- [ ] I have performed a self-review of my code
- [ ] If it is a new project, I have done thorough tests.
- [ ] Have you updated the README file of the repository and added the name of the project in it?
- [ ] Have you added a `README.md` file inside the directory of your project and explained it there properly (with images)?


51 changes: 51 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Lint

on: push

jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest

steps:
- name: Check out Git repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8

- name: Install Python dependencies
run: pip install black flake8

- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: "7.4"
coverage: none
tools: phpcs

- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 12

# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: npm install

- name: Run linters
uses: wearerequired/lint-action@v1
with:
github_token: ${{ secrets.github_token }}

black: true
flake8: true

#eslint: true
#prettier: true

php_codesniffer: true
# Ignore warnings
php_codesniffer_args: "-n"

0 comments on commit d397dfb

Please sign in to comment.