Skip to content

chore: Make pwd_without_leading_slash readonly #52

chore: Make pwd_without_leading_slash readonly

chore: Make pwd_without_leading_slash readonly #52

Workflow file for this run

name: ci
on:
push:
branches:
- main
paths-ignore:
- README.md
pull_request:
branches:
- main
paths-ignore:
- README.md
jobs:
test:
runs-on: ubuntu-22.04
permissions:
checks: write
statuses: write
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Check code style
uses: reviewdog/[email protected]
- name: Run static analysis
uses: reviewdog/[email protected]
- name: Set up bats
run: npm install -g [email protected]
- name: Run tests
run: bats --report-formatter junit . completion/bash
- name: Create test report
uses: dorny/[email protected]
if: always()
with:
name: Test report
path: report.xml
reporter: java-junit