Skip to content

Merge pull request #14 from hnshah/fix/path-traversal-security-issue-10 #152

Merge pull request #14 from hnshah/fix/path-traversal-security-issue-10

Merge pull request #14 from hnshah/fix/path-traversal-security-issue-10 #152

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install BATS
run: |
brew install bats-core
- name: Run tests
run: |
./tests/bats/bats-core/bin/bats tests/ --timing
- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: test-results
path: tests/
retention-days: 7