https://github.com/exercism/roc
Exercism exercises in Roc.
https://github.com/exercism/roc
exercism-track maintained
Last synced: 3 months ago
JSON representation
Exercism exercises in Roc.
- Host: GitHub
- URL: https://github.com/exercism/roc
- Owner: exercism
- License: mit
- Created: 2024-08-06T11:21:16.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-01-31T10:33:48.000Z (4 months ago)
- Last Synced: 2025-03-01T21:06:22.534Z (3 months ago)
- Topics: exercism-track, maintained
- Language: Roc
- Homepage: https://exercism.org/tracks/roc
- Size: 910 KB
- Stars: 11
- Watchers: 3
- Forks: 9
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Exercism Roc Track
[](https://github.com/exercism/roc/actions?query=workflow%3Aconfiglet) [](https://github.com/exercism/roc/actions?query=workflow%3Atest)
Exercism exercises in Roc.
## Testing
To test all exercises, run `./bin/verify-exercises`.
This command will iterate over all exercises and check to see if their exemplar/example implementation passes all the tests.To test a single exercise, run `./bin/verify-exercises `.
### Track linting
[`configlet`](https://exercism.org/docs/building/configlet) is an Exercism-wide tool for working with tracks. You can download it by running:
```shell
$ ./bin/fetch-configlet
```Run its [`lint` command](https://exercism.org/docs/building/configlet/lint) to verify if all exercises have all the necessary files and if config files are correct:
```shell
$ ./bin/configlet lintThe lint command is under development.
Please re-run this command regularly to see if your track passes the latest linting rules.Basic linting finished successfully:
- config.json exists and is valid JSON
- config.json has these valid fields:
language, slug, active, blurb, version, status, online_editor, key_features, tags
- Every concept has the required .md files
- Every concept has a valid links.json file
- Every concept has a valid .meta/config.json file
- Every concept exercise has the required .md files
- Every concept exercise has a valid .meta/config.json file
- Every practice exercise has the required .md files
- Every practice exercise has a valid .meta/config.json file
- Required track docs are present
- Required shared exercise docs are present
```