Skip to content

Commit

Permalink
Add shellcheck and Markdownlint
Browse files Browse the repository at this point in the history
  • Loading branch information
roceb committed Aug 13, 2024
1 parent e7324bd commit 80e7c64
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .github/workflows/markdownlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Lint Markdown Files

on:
push:
branches:
- main
pull_request:

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Run linter
uses: actionshub/markdownlint@main
14 changes: 14 additions & 0 deletions .github/workflows/shellcheck.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: shellcheck

on:
- push
- pull_request

jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Run shellcheck
uses: ludeeus/action-shellcheck@master
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# rubin_workflows
# rubin_workflows

Workflows for GitHub Actions.

0 comments on commit 80e7c64

Please sign in to comment.