Skip to content

Commit

Permalink
Added support for Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
yatish27 committed Oct 13, 2024
1 parent 1177a5a commit b3ee9ba
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 10 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/validate-shell-scripts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Validate Shell Scripts

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
with:
scandir: "."
severity: error
10 changes: 0 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,16 +135,6 @@ To update your dotfiles:

5. Restart your terminal or run `source ~/.zshrc` to apply the changes.

## Additional Tips

### Git Aliases

To set up a nice `git lg` alias for a prettier log output:

```
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --"
```

## Contributing

If you have any suggestions or improvements, feel free to open an issue or submit a pull request.
Expand Down
5 changes: 5 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## TODO

- [ ] Add setup for cursor editor to match vscode
- [ ] Add wrap to Brewfile
- [ ] Add rectangle, pearcleaner to Brewfile

0 comments on commit b3ee9ba

Please sign in to comment.