Skip to content

Commit

Permalink
Add "act" to README.md
Browse files Browse the repository at this point in the history
ptrstn committed Jan 15, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 80c38c6 commit 137ae1f
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -41,7 +41,7 @@ Alternatively, you can perform a manual installation by following these steps:
cp -i .bash_aliases ~
```

3. Add the following lines to the beginning of your `.bashrc` file to check if the `.bash_aliases` file exists and source it:
3. Add the following lines at the beginning of your `.bashrc` file to check if the `.bash_aliases` file exists and to source it:

```bash
if [ -f ~/.bash_aliases ]; then
@@ -85,4 +85,17 @@ To check all the scripts, simply run:

```bash
shellcheck -x setup.sh ./scripts/*.sh ./bin/*.sh
```
```

### Run GitHub Actions workflows locally

You can run GitHub Actions workflows locally on your own machine using a tool called [act](https://github.com/nektos/act).

Act is a command-line tool that simulates the GitHub Actions runner environment on your local machine,
allowing you to test and debug your workflows locally before pushing changes to your repository.

To trigger the entire workflow locally, simply run:

```bash
act
```

0 comments on commit 137ae1f

Please sign in to comment.