-
-
Notifications
You must be signed in to change notification settings - Fork 88
Automate testing of initial sprints in tools module #472
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
LonMcGregor
wants to merge
18
commits into
CodeYourFuture:main
Choose a base branch
from
LonMcGregor:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
6dec799
Add expected answers and test yaml
da754c4
Simplify test yaml
43a83b7
add debug step
0aa6620
use correct changed files key
ba0cdb4
get wider range of files
83f3c56
clean up test results printing
20c5a0f
break the yaml file
ea02b26
refix the yaml file
5fd41f2
test capitalisation
5093abe
refix the caps
997bd77
use pr event context
04fa17b
use correct token
bbd54a6
force red x on fail
6465284
add checkout step
1059cbc
be inconsistent because github
77a85d0
try normal pr target
2f36a31
Create pull request action (#1)
LonMcGregor c6dc9c4
Lm binary task action (#2)
LonMcGregor File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,65 @@ | ||
| name: Test SDC Tasks | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: | ||
| - opened | ||
| - labeled | ||
| - reopened | ||
| - synchronize | ||
| paths: | ||
| - '**.sh' | ||
|
|
||
| jobs: | ||
| test_sdc_tasks: | ||
|
|
||
| name: Test SDC Tasks | ||
| runs-on: ubuntu-slim | ||
| permissions: | ||
| pull-requests: write | ||
|
|
||
| steps: | ||
| - name: checkout base branch | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shall we add a filtering step that cancels this run if there isn't a "Needs Review" label? And maybe also add a dependency on the 'Validate PR Metadata' workflow so that we don't run if it's failing? |
||
| uses: actions/checkout@v5 | ||
| - name: Get changed files | ||
| id: changed-files | ||
| uses: tj-actions/changed-files@v47.0.5 | ||
| - name: test individual shell tools | ||
| id: test-individual-shell-tools | ||
| if: contains(steps.changed-files.outputs.modified_files, 'individual-shell-tools/') | ||
| run: ./test-sdc.sh individual-shell-tools | ||
| shell: bash | ||
| - name: test jq | ||
| id: test-jq | ||
| if: contains(steps.changed-files.outputs.modified_files, 'jq/') | ||
| run: ./test-sdc.sh jq | ||
| shell: bash | ||
| - name: test shell-pipelines | ||
| id: test-shell-pipelines | ||
| if: contains(steps.changed-files.outputs.modified_files, 'shell-pipelines/') | ||
| run: ./test-sdc.sh shell-pipelines | ||
| shell: bash | ||
| - name: test number-systems | ||
| id: test-number-systems | ||
| if: contains(steps.changed-files.outputs.modified_files, 'number-systems/') | ||
| run: ./test-sdc.sh number-systems | ||
| shell: bash | ||
| - name: make output comment | ||
| if: steps.test-individual-shell-tools.outputs.attempted == 'y' || steps.test-jq.outputs.attempted == 'y' || steps.test-shell-pipelines.outputs.attempted == 'y' || steps.test-number-systems.outputs.attempted == 'y' | ||
| env: | ||
| GH_TOKEN: ${{ github.token }} | ||
| ISSUE_URL: ${{ github.event.pull_request.html_url }} | ||
| run: | | ||
| gh pr comment $ISSUE_URL --body-file testoutput.txt | ||
| - name: add appropriate labels | ||
| if: steps.test-individual-shell-tools.outputs.complete == 'y' || steps.test-jq.outputs.complete == 'y' || steps.test-shell-pipelines.outputs.complete == 'y' | ||
| env: | ||
| GH_TOKEN: ${{ github.token }} | ||
| ISSUE_URL: ${{ github.event.pull_request.html_url }} | ||
| run: | | ||
| gh pr edit $ISSUE_URL --add-label "Complete" | ||
| gh pr edit $ISSUE_URL --remove-label "Needs Review" | ||
| - name: fail if not complete | ||
| if: (steps.test-individual-shell-tools.outputs.attempted == 'y' || steps.test-jq.outputs.attempted == 'y' || steps.test-shell-pipelines.outputs.attempted == 'y') && !(steps.test-individual-shell-tools.outputs.complete == 'y' || steps.test-jq.outputs.complete == 'y' || steps.test-shell-pipelines.outputs.complete == 'y') | ||
| run: | | ||
| exit -1 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,2 @@ | ||
| node_modules | ||
| testoutput.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| Ahmed | ||
| Basia | ||
| Mehmet | ||
| Leila | ||
| Piotr | ||
| Chandra |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| Ahmed London | ||
| Basia London | ||
| Mehmet Birmingham | ||
| Leila London | ||
| Piotr Glasgow | ||
| Chandra Birmingham |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| Ahmed 1 | ||
| Basia 22 | ||
| Mehmet 3 | ||
| Leila 1 | ||
| Piotr 15 | ||
| Chandra 12 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| Ahmed 4 | ||
| Basia 6 | ||
| Leila 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| Ahmed 3 | ||
| Basia 3 | ||
| Mehmet 3 | ||
| Leila 1 | ||
| Piotr 5 | ||
| Chandra 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 54 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| Ahmed 15 | ||
| Basia 37 | ||
| Mehmet 32 | ||
| Leila 1 | ||
| Piotr 61 | ||
| Chandra 18 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Once upon a time... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| Once upon a time... | ||
| There was a house made of gingerbread. | ||
| It looked delicious. | ||
| I was tempted to take a bite of it. | ||
| But this seemed like a bad idea... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| 1 It looked delicious. | ||
| 2 I was tempted to take a bite of it. | ||
| 3 But this seemed like a bad idea... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| 1 Once upon a time... | ||
| 2 There was a house made of gingerbread. | ||
| 3 It looked delicious. | ||
| 4 I was tempted to take a bite of it. | ||
| 5 But this seemed like a bad idea... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| Doctor: Hello | ||
| Doctor: What's wrong today? | ||
| Doctor: That sounds frustrating. When did this start? | ||
| Doctor: Say "Hi". | ||
| Doctor: You didn't say hello | ||
| Doctor: You're welcome, goodbye |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| Doctor: Hello | ||
| Patient: Hello Doctor | ||
| Doctor: What's wrong today? | ||
| Doctor: That sounds frustrating. When did this start? | ||
| Doctor: Say "Hi". | ||
| Doctor: You didn't say hello | ||
| Doctor: You're welcome, goodbye | ||
| Patient: I went to the doctor! | ||
| Spouse: I'm glad you saw the Doctor: did they cure you? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| Doctor: What's wrong today? | ||
| Doctor: That sounds frustrating. When did this start? | ||
| Doctor: Say "Hi". | ||
| Patient: Hi | ||
| Patient: I seem to be cured! | ||
| Doctor: You're welcome, goodbye | ||
|
|
||
| Patient: I went to the doctor! | ||
| Spouse: I'm glad you saw the Doctor: did they cure you? | ||
| Patient: Yes! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| Doctor: You didn't say hello | ||
| Patient: I seem to be cured! | ||
| -- | ||
| Patient: I went to the doctor! | ||
| Spouse: I'm glad you saw the Doctor: did they cure you? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| dialogue-2.txt | ||
| dialogue.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| dialogue-2.txt:2 | ||
| dialogue-3.txt:0 | ||
| dialogue.txt:6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| child-directory | ||
| script-01.sh | ||
| script-02.sh | ||
| script-03.sh | ||
| script-04.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| helper-1.txt | ||
| helper-2.txt | ||
| helper-3.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| .: | ||
| child-directory | ||
| script-01.sh | ||
| script-02.sh | ||
| script-03.sh | ||
| script-04.sh | ||
|
|
||
| ./child-directory: | ||
| helper-1.txt | ||
| helper-2.txt | ||
| helper-3.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| First exercise (sorted newest to oldest): | ||
| helper-3.txt | ||
| helper-1.txt | ||
| helper-2.txt | ||
| Second exercise (sorted oldest to newest): | ||
| helper-2.txt | ||
| helper-1.txt | ||
| helper-3.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| ThIs Is a sample fIle for experImentIng wIth sed. | ||
|
|
||
| It contaIns many lInes, and there are some thIngs you may want to do wIth each of them. | ||
|
|
||
| We'll Include some score InformatIon: | ||
| 37 AlIsha | ||
| 15 Jacob | ||
| 7 PIetro | ||
| 3 Katya | ||
|
|
||
| We also should remember, when we go shoppIng, to get 4 Items: oranges,cheese,bread,olIves. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| This is a sample file for experimenting with sed. | ||
|
|
||
| It contains many lines, and there are some things you may want to do with each of them. | ||
|
|
||
| We'll include some score information: | ||
| Alisha | ||
| Jacob | ||
| Pietro | ||
| Katya | ||
|
|
||
| We also should remember, when we go shopping, to get items: oranges,cheese,bread,olives. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| This is a sample file for experimenting with sed. | ||
|
|
||
| It contains many lines, and there are some things you may want to do with each of them. | ||
|
|
||
| We'll include some score information: | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| This is a sample file for experimenting with sed. | ||
|
|
||
| It contains many lines, and there are some things you may want to do with each of them. | ||
|
|
||
| We'll include some score information: | ||
| 37 Alisha | ||
| 15 Jacob | ||
| 7 Pietro | ||
| 3 Katya | ||
|
|
||
| We also should remember, when we go shopping, to get 4 items: oranges,cheese,bread,olives. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| This is a sample file for experimenting with sed. | ||
|
|
||
| It contains many lines, and there are some things you may want to do with each of them. | ||
|
|
||
| We'll include some score information: | ||
| Alisha 37 | ||
| Jacob 15 | ||
| Pietro 7 | ||
| Katya 3 | ||
|
|
||
| We also should remember, when we go shopping, to get 4 items: oranges,cheese,bread,olives. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| This is a sample file for experimenting with sed. | ||
|
|
||
| It contains many lines, and there are some things you may want to do with each of them. | ||
|
|
||
| We'll include some score information: | ||
| 37 Alisha | ||
| 15 Jacob | ||
| 7 Pietro | ||
| 3 Katya | ||
|
|
||
| We also should remember, when we go shopping, to get 4 items: oranges, cheese, bread, olives. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 19 ../helper-files/helper-3.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 3 ../helper-files/helper-3.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| 1 4 20 ../helper-files/helper-1.txt | ||
| 1 7 39 ../helper-files/helper-2.txt | ||
| 3 19 92 ../helper-files/helper-3.txt | ||
| 5 30 151 total |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Selma |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 35 Fashion Street, London, E1 6PX |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| Selma, Software Engineer | ||
| Selma, Software Engineer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| Ahmed | ||
| Basia | ||
| Mehmet | ||
| Leila | ||
| Piotr | ||
| Chandra |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| Ahmed London | ||
| Basia London | ||
| Mehmet Birmingham | ||
| Leila London | ||
| Piotr Glasgow | ||
| Chandra Birmingham |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| Ahmed 1 | ||
| Basia 22 | ||
| Mehmet 3 | ||
| Leila 1 | ||
| Piotr 15 | ||
| Chandra 12 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| Ahmed 4 | ||
| Basia 6 | ||
| Mehmet 17 | ||
| Leila 1 | ||
| Piotr 8 | ||
| Chandra 6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| Ahmed 3 | ||
| Basia 3 | ||
| Mehmet 3 | ||
| Leila 1 | ||
| Piotr 5 | ||
| Chandra 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| Ahmed 15 | ||
| Basia 37 | ||
| Mehmet 32 | ||
| Leila 1 | ||
| Piotr 61 | ||
| Chandra 18 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 54 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 164 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"answers": [0, 1110, 45, 1000, "01011", 11111, 100010, 15, 8, 2, "(10$|10[^0-9])", "VOLUNTEER_CHECK", "E", 182, 902, 11, 33, "VOLUNTEER_CHECK", "VOLUNTEER_CHECK", "VOLUNTEER_CHECK", "VOLUNTEER_CHECK"]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| Ariane | ||
| Daniel | ||
| HoChiMinh | ||
| KualaLumpur | ||
| Levi | ||
| London | ||
| NewYork | ||
| Niamh | ||
| Olga | ||
| York | ||
| dHondt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| Ariane | ||
| Daniel | ||
| HoChiMinh | ||
| KualaLumpur | ||
| Levi | ||
| London | ||
| NewYork | ||
| Niamh | ||
| Olga | ||
| York |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| Ariane | ||
| Daniel | ||
| Levi | ||
| London | ||
| Niamh | ||
| Olga | ||
| York |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| Ahmed London 1 10 4 | ||
| Basia London 22 9 6 | ||
| Chandra Birmingham 12 6 | ||
| Leila London 1 | ||
| Mehmet Birmingham 3 12 17 | ||
| Piotr Glasgow 15 2 25 11 8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| Basia London 22 9 6 | ||
| Piotr Glasgow 15 2 25 11 8 | ||
| Chandra Birmingham 12 6 | ||
| Mehmet Birmingham 3 12 17 | ||
| Leila London 1 | ||
| Ahmed London 1 10 4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| Basia London 22 9 6 | ||
| Piotr Glasgow 15 2 25 11 8 | ||
| Chandra Birmingham 12 6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Piotr Glasgow 15 2 25 11 8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| Entry German | ||
| Entry Mariana | ||
| Entry Sally | ||
| Exit German | ||
| Exit Mariana | ||
| Exit Sally |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| 5 Entry | ||
| 4 Exit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| 5 Entry | ||
| 4 Exit |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this not mean that it won't trigger for the number systems README.md file change?