Skip to content

chore: version bump 4.9.1 -> 4.9.2 #370

chore: version bump 4.9.1 -> 4.9.2

chore: version bump 4.9.1 -> 4.9.2 #370

Workflow file for this run

name: 'ani-cli checks'

Check failure on line 1 in .github/workflows/ani-cli.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ani-cli.yml

Invalid workflow file

you may only define one of `paths` and `paths-ignore` for a single event
on:
push:
branches:
- master
pull_request:
paths:
- "**ani-cli"
paths-ignore:
- "_ani-cli-bash"
- "_ani-cli-zsh"
jobs:
sh-checker:
name: Shellcheck + Shfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run the sh-checker
uses: luizm/action-sh-checker@master
env:
SHELLCHECK_OPTS: -s sh -o all -e 2250
SHFMT_OPTS: -i 4 -ci -d
check-exec:
name: Executable Bit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: test exec bit
run: test -x "./ani-cli"
check-no-awk:
name: No Awk Allowed
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: verify that noone added awk
run: '! grep awk "./ani-cli"'