https://github.com/sanderploegsma/exercism-test-runner-action
https://github.com/sanderploegsma/exercism-test-runner-action
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sanderploegsma/exercism-test-runner-action
- Owner: sanderploegsma
- Created: 2023-11-09T13:57:41.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-15T19:21:48.000Z (over 1 year ago)
- Last Synced: 2025-01-10T14:03:58.166Z (6 months ago)
- Language: TypeScript
- Size: 362 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Exercism Test Runner action
This action tests an Exercism track repository using that track's test runner.
## Inputs
### `test-runner-image`
**Required** The Docker image of the test runner.
### `test-concept-exercises`
**Required** Whether to test concept exercises. Defaults to `true`.
### `test-practice-exercises`
**Required** Whether to test practice exercises. Defaults to `true`.
### `include-wip-exercises`
**Required** Whether to test exercises marked as work-in-progress. Defaults to `false`.
### `include-deprecated-exercises`
**Required** Whether to test exercises marked as deprecated. Defaults to `false`.
### `rename-example-files`
**Required** Set to false to copy the example files as-is to the solution directory. Defaults to `true`.
## Outputs
None.
## Example usage
```yaml
uses: sanderploegsma/exercism-test-runner-action@main
with:
test-runner-image: exercism/java-test-runner
```