Add --as-skill flag to kit unpack for agent skill installation #610
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: Container entrypoint tests | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| entrypoint-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Build test container | |
| uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0 | |
| with: | |
| context: ./build | |
| file: ./build/ci/Dockerfile | |
| push: false | |
| tags: entrypoint-tests | |
| - name: Run Bats tests | |
| run: | | |
| docker run --rm entrypoint-tests |