ci(github): bump ludeeus/action-shellcheck from cd81f4475ab741e097ec0fe73b692f3e49d66b8c to 00b27aa7cb85167568cb48a3838b75f4265f2bca in /.github/workflows #5
Workflow file for this run
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: Test | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
permissions: | |
contents: read | |
checks: write | |
pull-requests: write | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha || github.ref }} | |
- name: Setup BATS | |
uses: mig4/setup-bats@2859ea733ef81b6ba31008a7fba0cacfbf2a5429 # v1.2.0 | |
with: | |
bats-version: 1.10.0 | |
- name: Run tests | |
run: bats -r ./test/parse_tool_versions_test.bats |