Skip to content

chore: move chore scripts to dir test/chore 馃Ч #256

chore: move chore scripts to dir test/chore 馃Ч

chore: move chore scripts to dir test/chore 馃Ч #256

Workflow file for this run

# Quickstart for GitHub Actions
# https://docs.github.com/en/actions/quickstart
name: Lint
on: [ push, pull_request, workflow_dispatch ]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
name: Lint
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- run: test/chore-scripts/lint.sh
# https://remarkablemark.org/blog/2017/10/12/check-git-dirty/
- name: Check git dirty
run: |
git status --short
[ -z "$(git status --short)" ]