Make patterns ungreedy in the Sushi problem matcher #104
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Verify | |
on: [push, pull_request] | |
jobs: | |
static_checks: | |
name: Static Checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Check bash formatting with shfmt (https://github.com/patrickvane/shfmt) | |
- name: bash formatting | |
run: docker run -v "$PWD":/mnt -w /mnt mvdan/shfmt -ci -i 2 -l -d -- *.sh | |
# Analyse bash with ShellCheck (https://github.com/koalaman/shellcheck) | |
- name: shellcheck | |
run: docker run -v "$PWD":/mnt -w /mnt koalaman/shellcheck -- *.sh test/*.bats | |
# Check other files formatting with Prettier (https://prettier.io) | |
- name: misc files formatting | |
run: docker run -v "$PWD":/mnt -w /mnt tmknom/prettier --check . | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# https://github.com/bats-core/bats-action | |
- name: Setup Bats & libraries | |
uses: bats-core/[email protected] | |
with: | |
bats-install: true | |
bats-version: latest | |
support-path: ${{ github.workspace }}/test/test_helper/bats-support | |
assert-path: ${{ github.workspace }}/test/test_helper/bats-assert | |
detik-install: false | |
file-install: false | |
- name: Run Tests | |
run: bats --trace --print-output-on-failure test/ |