Skip to content

bg_waitany: Disable set -x while polling and reactivate before exiting #48

bg_waitany: Disable set -x while polling and reactivate before exiting

bg_waitany: Disable set -x while polling and reactivate before exiting #48

Workflow file for this run

name: Test
on:
push:
branches: ['*']
tags: ['v*']
workflow_call: {}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
env:
SHELLCHECK_OPTS: -x
test:
runs-on: ubuntu-latest
steps:
- name: Install bats
uses: bats-core/[email protected]
- name: Checkout
uses: actions/checkout@v4
- uses: orbit-online/upkg-install@v1
- name: Run tests
run: bats --formatter tap13 . | tee results.tap
- name: Generate test summary
uses: test-summary/action@v2
with:
paths: results.tap
show: "fail, skip"
if: always()