https://github.com/axtens/euphoria
Preparing for Euphoria track on Exercism
https://github.com/axtens/euphoria
Last synced: 3 months ago
JSON representation
Preparing for Euphoria track on Exercism
- Host: GitHub
- URL: https://github.com/axtens/euphoria
- Owner: axtens
- License: mit
- Created: 2022-08-15T02:56:23.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-01-25T15:31:32.000Z (over 2 years ago)
- Last Synced: 2025-09-21T02:57:03.529Z (9 months ago)
- Language: Euphoria
- Size: 48.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Exercism OpenEuphoria Track
[](https://github.com/exercism/openeuphoria/actions?query=workflow%3Aconfiglet) [](https://github.com/exercism/openeuphoria/actions?query=workflow%3Atest)
Exercism exercises in OpenEuphoria.
## Testing
To test the exercises, run `./bin/test`.
This command will iterate over all exercises and check to see if their exemplar/example implementation passes all the tests.
### 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 lint
The 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
```