Skip to content

Commit

Permalink
Make sure we can develop in all supported env (#133)
Browse files Browse the repository at this point in the history
* Make sure we can develop in all supported env

* Remove `shopt -s globstar`
  • Loading branch information
kachick authored Feb 26, 2024
1 parent fb9b5b7 commit a83487a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/ci-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,14 @@ on:
jobs:
tasks:
timeout-minutes: 10
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-14 # M1
- macos-13 # Intel
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: asdf-vm/actions/install@v3
Expand Down
2 changes: 0 additions & 2 deletions scripts/format.bash
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

set -euxo pipefail

shopt -s globstar

shfmt --language-dialect bash --write \
./**/*.bash

Expand Down
2 changes: 0 additions & 2 deletions scripts/lint.bash
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

set -euxo pipefail

shopt -s globstar

shellcheck --shell=bash --external-sources \
bin/* --source-path=lib/ \
lib/*.bash \
Expand Down

0 comments on commit a83487a

Please sign in to comment.