https://github.com/exercism/tact
Exercism exercises in Tact.
https://github.com/exercism/tact
exercism-track wip-track
Last synced: 26 days ago
JSON representation
Exercism exercises in Tact.
- Host: GitHub
- URL: https://github.com/exercism/tact
- Owner: exercism
- License: mit
- Created: 2023-09-06T12:39:23.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-05T14:11:29.000Z (9 months ago)
- Last Synced: 2025-04-29T05:28:01.359Z (about 1 month ago)
- Topics: exercism-track, wip-track
- Language: Shell
- Homepage: https://exercism.org/tracks/tact
- Size: 21.5 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Exercism Tact Track
[](https://github.com/exercism/tact/actions?query=workflow%3Aconfiglet) [](https://github.com/exercism/tact/actions?query=workflow%3Atest)
Exercism exercises in Tact.
## 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 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
```