Skip to content

Commit

Permalink
Merge pull request #16 from akiross/implement-logic
Browse files Browse the repository at this point in the history
feat: match logic implemented
  • Loading branch information
pietroppeter authored Mar 28, 2024
2 parents 9b76ba6 + 98716d7 commit 8609a16
Show file tree
Hide file tree
Showing 5 changed files with 428 additions and 147 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/elm-to-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Deploy an Elm app to GitHub Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# branches: ["main", "]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
uses: actions/upload-pages-artifact@v1
with:
path: '.'

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
2 changes: 1 addition & 1 deletion elm.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
"elm/browser": "1.0.2",
"elm/core": "1.0.5",
"elm/html": "1.0.0",
"elm/json": "1.1.3",
"elm-explorations/test": "2.2.0",
"mdgriffith/elm-ui": "1.1.8"
},
"indirect": {
"elm/bytes": "1.0.8",
"elm/json": "1.1.3",
"elm/random": "1.0.0",
"elm/time": "1.0.0",
"elm/url": "1.0.0",
Expand Down
6 changes: 4 additions & 2 deletions notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,7 @@ implement logic
- [x] new module word
- [x] refactor word using suggestion from redInk style guide: https://github.com/NoRedInk/elm-style-guide?tab=readme-ov-file#identifiers
- [x] test suite
- [ ] implement logic
- [ ] link with main
- [x] implement logic
- [x] link with main
- [x] refactor word logic using algebric types "MatchLetter"
- [x] refactor model
Loading

0 comments on commit 8609a16

Please sign in to comment.