Skip to content

Commit

Permalink
Fix invalid script name
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom committed May 24, 2024
1 parent a7fc920 commit 9fc7c83
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# - https://github.com/marketplace?type=actions&query=setup
#
# Requires scripts:
# - bin/test
# - bin/verify-exercises

name: <track> / Test

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Exercism exercises in Arturo.

## Testing

To test the exercises, run `./bin/test`.
To test the 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.

### Track linting
Expand Down
2 changes: 1 addition & 1 deletion bin/add-exercise
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Your next steps are:
based on the canonical data at 'https://github.com/exercism/problem-specifications/blob/main/exercises/${slug}/canonical-data.json'
- Any test cases you don't implement, mark them in 'exercises/practice/${slug}/.meta/tests.toml' with "include = false"
- Create the example solution in 'exercises/practice/${slug}/.meta/src/example.art'
- Verify the example solution by running 'bin/test-no-docker ${slug}'
- Verify the example solution by running 'bin/verify-exercises-no-docker ${slug}'
- Create the stub solution in 'exercises/practice/${slug}/src/${slug}.art'
- Update the 'difficulty' value for the exercise's entry in the 'config.json' file
- Validate CI using 'bin/configlet lint' and 'bin/configlet fmt'
Expand Down
2 changes: 1 addition & 1 deletion bin/verify-exercises
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# .meta/config.json file, or possibly inferred from the exercise's directory name.

# Example:
# ./bin/test
# ./bin/verify-exercises

# Verify the Concept Exercises
for concept_exercise_dir in ./exercises/concept/*/; do
Expand Down

0 comments on commit 9fc7c83

Please sign in to comment.