{"id":13513841,"url":"https://github.com/exercism/elixir","last_synced_at":"2025-05-14T16:11:07.495Z","repository":{"id":14555717,"uuid":"17271271","full_name":"exercism/elixir","owner":"exercism","description":"Exercism exercises in Elixir.","archived":false,"fork":false,"pushed_at":"2025-04-04T04:26:15.000Z","size":4249,"stargazers_count":633,"open_issues_count":7,"forks_count":403,"subscribers_count":32,"default_branch":"main","last_synced_at":"2025-04-12T22:17:24.898Z","etag":null,"topics":["community-contributions-accepted","exercism-track","maintained"],"latest_commit_sha":null,"homepage":"https://exercism.org/tracks/elixir","language":"Elixir","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/exercism.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["exercism"],"custom":["https://exercism.org/donate"]}},"created_at":"2014-02-28T01:19:15.000Z","updated_at":"2025-04-04T04:26:18.000Z","dependencies_parsed_at":"2024-10-24T19:00:50.542Z","dependency_job_id":null,"html_url":"https://github.com/exercism/elixir","commit_stats":{"total_commits":1480,"total_committers":318,"mean_commits":4.654088050314465,"dds":0.7621621621621621,"last_synced_commit":"0dbdbc29e06b7dcf4d0638cff07afcfc65c39529"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exercism%2Felixir","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exercism%2Felixir/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exercism%2Felixir/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exercism%2Felixir/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/exercism","download_url":"https://codeload.github.com/exercism/elixir/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248637786,"owners_count":21137538,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["community-contributions-accepted","exercism-track","maintained"],"created_at":"2024-08-01T05:00:38.592Z","updated_at":"2025-04-12T22:17:33.411Z","avatar_url":"https://github.com/exercism.png","language":"Elixir","readme":"# Exercism Elixir Track\n\n![GitHub branch checks state](https://img.shields.io/github/checks-status/exercism/elixir/main)\n![GitHub contributors](https://img.shields.io/github/contributors-anon/exercism/elixir)\n![GitHub commit activity](https://img.shields.io/github/commit-activity/m/exercism/elixir)\n\n[Exercism Exercises in Elixir](https://exercism.org/tracks/elixir)\n\n## Setup\n\nThe exercises currently target Elixir versions from 1.14 to 1.18 and Erlang/OTP versions from 25 to 27. Detailed installation instructions can be found at\n[https://elixir-lang.org/install.html](https://elixir-lang.org/install.html). We recommend using the [asdf version manager](https://github.com/asdf-vm/asdf) to manage multiple Elixir versions.\n\n## Testing\n\n---\n\n\u003e It is recommended to test BEFORE submitting a PR. It will test your submission, ensure\n\u003e that the repository builds as a whole, and help guard against unintentional, unrelated changes.\n\n---\n\n### Test Exercises\n\nTo test all of the exercises against their example solution, you can run `bin/test_exercises.sh`:\n\n```shell\n$ ./bin/test_exercises.sh\nTesting: accumulate Pass\nTesting: acronym Pass\n...\nTesting: zipper Pass\n--------------------------------------------------------------------------------\n93/93 tests passed.\n```\n\nThis will take some time.\n\nTo only test some exercises, run:\n\n```shell\n$ ./bin/test_exercises.sh word-count zebra-puzzle\nTesting: word-count Pass\nTesting: zebra-puzzle Pass\n--------------------------------------------------------------------------------\n2/2 tests passed.\n```\n\n### Dialyzer\n\nTo run dialyzer on all exercises, run `./bin/dialyzer_check.sh`. It might take a really long time the first time you run it. It will also be run for you by Github Actions as part of the PR check.\n\n### Code and document formatting\n\nTo check formatting of all exercises and all documents, run `./bin/check_formatting.sh`. It will also be run for you by Github Actions as part of the PR check.\n\n### Track linting\n\n[`configlet`](https://github.com/exercism/configlet) is an Exercism-wide tool for working with tracks. You can download it by running:\n\n```shell\n$ ./bin/fetch-configlet\n```\n\nRun its `lint` command to verify if all exercises have all the necessary files and if config files are correct:\n\n```shell\n$ ./bin/configlet lint\n\nThe `exercises.practice.slug` value is `transpose 🙂`, but it must be a lowercase and kebab-case string:\n/Users/angelika/Documents/exercism/elixir/config.json\n\nConfiglet detected at least one problem.\nFor more information on resolving the problems, please see the documentation:\nhttps://github.com/exercism/docs/blob/main/building/configlet/lint.md\n```\n\n## Contributing Guide\n\nIf you want to help maintain the Elixir track, take a look at [HELLO.md](https://github.com/exercism/elixir/blob/master/HELLO.md). You will find there an introduction to all the possible ways you can help us.\n\nIf you want to contribute to this repository specifically, please see [CONTRIBUTING.md](https://github.com/exercism/elixir/blob/master/CONTRIBUTING.md).\n","funding_links":["https://github.com/sponsors/exercism","https://exercism.org/donate"],"categories":["Elixir","[🧑‍💻 dev](https://github.com/stars/ketsapiwiq/lists/dev)"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexercism%2Felixir","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fexercism%2Felixir","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexercism%2Felixir/lists"}