Skip to content

Commit

Permalink
Switch progress
Browse files Browse the repository at this point in the history
  • Loading branch information
bowbahdoe committed Sep 5, 2024
1 parent b730191 commit 106e533
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 17 deletions.
33 changes: 16 additions & 17 deletions .github/workflows/linter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,20 @@ name: Linter
on: [pull_request]

jobs:
markdown-linter:
name: "Markdown Linter"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# markdown-linter:
# name: "Markdown Linter"
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: markdownlint-cli
# uses: nosborn/[email protected]
# with:
# files: .
# config_file: .markdownlint.yaml

- name: markdownlint-cli
uses: nosborn/[email protected]
with:
files: .
config_file: .markdownlint.yaml

markdown-link-check:
name: "Markdown Link Checker"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: gaurav-nelson/[email protected]
# markdown-link-check:
# name: "Markdown Link Checker"
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: gaurav-nelson/[email protected]
5 changes: 5 additions & 0 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -447,6 +447,8 @@
- [Integer to a Base 16 String](./integers_ii/integer_to_a_base_16_string.md)
- [Underscores in Integer Literals](./integers_ii/underscores_in_integer_literals.md)

- [🚧 Construction Zone 🚧]()

# Interactive Programs III

- [Files](./files.md)
Expand Down Expand Up @@ -522,6 +524,9 @@ Make them do one. -->
- [Switch III](./switch_iii.md)
- [Fallthrough](./switch_iii/fallthrough.md)
- [break](./switch_iii/break.md)
- [default](./switch_iii/default.md)
- [return](./switch_iii/return.md)
- [yield](./switch_iii/yield.md)
- [Recursion](./recursion.md)
- [Disclaimer](./recursion/disclaimer.md)
- [Base Case](./recursion/base_case.md)
Expand Down
1 change: 1 addition & 0 deletions src/switch_iii/default.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# default
3 changes: 3 additions & 0 deletions src/switch_iii/fallthrough.md
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
# Fallthrough

If the code for a given label does not `break`
or `return` then
1 change: 1 addition & 0 deletions src/switch_iii/return.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# return
1 change: 1 addition & 0 deletions src/switch_iii/yield.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# yield

0 comments on commit 106e533

Please sign in to comment.