feat: replace platforms/codex/ with real Codex plugin #192
Workflow file for this run
This file contains hidden or 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: Bats Tests | |
| on: | |
| push: | |
| paths: | |
| - 'plugins/**/*.sh' | |
| - 'plugins/ralph-specum-codex/**' | |
| - 'tests/**/*.bats' | |
| - 'tests/helpers/**' | |
| - 'tests/fixtures/**' | |
| - '.github/workflows/bats-tests.yml' | |
| pull_request: | |
| paths: | |
| - 'plugins/**/*.sh' | |
| - 'plugins/ralph-specum-codex/**' | |
| - 'tests/**/*.bats' | |
| - 'tests/helpers/**' | |
| - 'tests/fixtures/**' | |
| - '.github/workflows/bats-tests.yml' | |
| jobs: | |
| test: | |
| name: Run bats tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y bats jq | |
| - name: Run bats tests | |
| run: bats tests/*.bats |