Skip to content

Instantly share code, notes, and snippets.

View Rony20191's full-sized avatar

Rony Rony20191

View GitHub Profile
@Rony20191
Rony20191 / semantic-commit-messages.md
Created November 14, 2021 00:28 — forked from joshbuchea/semantic-commit-messages.md
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@Rony20191
Rony20191 / tests.yml
Created November 3, 2021 02:57 — forked from rubenvanassche/tests.yml
A simple Laravel testing workflow for GitHub Actions
name: Tests (PHP)
on: [push]
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1