{"id":34838389,"url":"https://github.com/probitas-test/setup-probitas","last_synced_at":"2026-01-13T20:48:19.961Z","repository":{"id":328976729,"uuid":"1113064634","full_name":"probitas-test/setup-probitas","owner":"probitas-test","description":"Set up your GitHub Actions workflow with Probitas, a scenario-based testing framework for Deno.","archived":false,"fork":false,"pushed_at":"2025-12-27T10:12:09.000Z","size":25,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-13T19:43:18.189Z","etag":null,"topics":["github-action","probitas","setup"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/probitas-test.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-09T13:25:24.000Z","updated_at":"2025-12-27T10:12:13.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/probitas-test/setup-probitas","commit_stats":null,"previous_names":["jsr-probitas/setup-probitas","probitas-test/setup-probitas"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/probitas-test/setup-probitas","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/probitas-test%2Fsetup-probitas","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/probitas-test%2Fsetup-probitas/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/probitas-test%2Fsetup-probitas/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/probitas-test%2Fsetup-probitas/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/probitas-test","download_url":"https://codeload.github.com/probitas-test/setup-probitas/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/probitas-test%2Fsetup-probitas/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28400168,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["github-action","probitas","setup"],"created_at":"2025-12-25T16:49:27.486Z","updated_at":"2026-01-13T20:48:19.956Z","avatar_url":"https://github.com/probitas-test.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# setup-probitas\n\nSet up your GitHub Actions workflow with [Probitas](https://github.com/probitas-test/probitas), a scenario-based testing framework.\n\n## Usage\n\n### Basic Setup\n\nThe simplest setup installs the latest stable Probitas version:\n\n```yaml\n- uses: probitas-test/setup-probitas@v1\n```\n\n### Full Example Workflow\n\n```yaml\nname: Test\n\non:\n  push:\n    branches: [main]\n  pull_request:\n    branches: [main]\n\njobs:\n  test:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n\n      - uses: probitas-test/setup-probitas@v1\n\n      - name: Run Probitas tests\n        run: probitas run\n```\n\n## Inputs\n\n| Input | Description | Default |\n|-------|-------------|---------|\n| `probitas-version` | The Probitas version to install from GitHub releases. Can be a semver version or `latest`. | `latest` |\n\n## Outputs\n\n| Output | Description |\n|--------|-------------|\n| `probitas-version` | The Probitas version that was installed. |\n\n## Examples\n\n### Specify Version\n\n```yaml\n- uses: probitas-test/setup-probitas@v1\n  with:\n    probitas-version: \"0.7.1\"\n```\n\n### Matrix Testing\n\nTest across multiple Probitas versions:\n\n```yaml\njobs:\n  test:\n    runs-on: ubuntu-latest\n    strategy:\n      matrix:\n        probitas-version: [\"latest\", \"0.7.0\", \"0.7.1\"]\n    steps:\n      - uses: actions/checkout@v4\n\n      - uses: probitas-test/setup-probitas@v1\n        with:\n          probitas-version: ${{ matrix.probitas-version }}\n\n      - run: probitas run\n```\n\n### Run with Selectors and Tags\n\n```yaml\n- uses: probitas-test/setup-probitas@v1\n\n- name: Run integration tests\n  run: probitas run -s tag:integration\n\n- name: Run with custom reporter\n  run: probitas run --reporter json \u003e results.json\n```\n\n### Multiple Operating Systems\n\n```yaml\njobs:\n  test:\n    strategy:\n      matrix:\n        os: [ubuntu-latest, macos-latest, windows-latest]\n    runs-on: ${{ matrix.os }}\n    steps:\n      - uses: actions/checkout@v4\n      - uses: probitas-test/setup-probitas@v1\n      - run: probitas run\n```\n\n## How It Works\n\nThis action performs the following steps:\n\n1. **Install Probitas CLI**: Downloads and installs the pre-compiled Probitas CLI binary from GitHub releases\n2. **Verify Installation**: Confirms Probitas is correctly installed and available in the PATH\n\n## Versioning\n\nThis action follows semantic versioning. When a new version is released (e.g., `v1.0.0`), the following tags are automatically updated:\n\n- `v1` - Points to the latest `v1.x.x` release\n- `v1.0` - Points to the latest `v1.0.x` release\n\n### Recommended Usage\n\n```yaml\n# Recommended: Use major version for automatic updates\n- uses: probitas-test/setup-probitas@v1\n\n# Alternative: Pin to major.minor for more control\n- uses: probitas-test/setup-probitas@v1.0\n\n# Alternative: Pin to exact version for maximum stability\n- uses: probitas-test/setup-probitas@v1.0.0\n```\n\nUsing `@v1` ensures you automatically receive bug fixes and new features within the v1 major version, while avoiding breaking changes.\n\n## Related Projects\n\n- [Probitas](https://github.com/probitas-test/probitas) - The Probitas framework and CLI\n\n## License\n\nSee [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprobitas-test%2Fsetup-probitas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprobitas-test%2Fsetup-probitas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprobitas-test%2Fsetup-probitas/lists"}