Skip to content

Commit

Permalink
Add Standard workflow
Browse files Browse the repository at this point in the history
This commit adds a GitHub Action that does Standard linting and
formatting checks.
  • Loading branch information
smaboshe committed Aug 26, 2024
1 parent 49ea628 commit a07c8f7
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/standardrb.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
name: Lint with StandardRB
on: [push]

jobs:
build:
runs-on: ubuntu-latest

permissions:
contents: read
checks: write

steps:
- uses: actions/checkout@v4
- name: StandardRB Linter
uses: testdouble/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a07c8f7

Please sign in to comment.