diff options
author | Jason Song <i@wolfogre.com> | 2022-12-05 10:08:17 +0100 |
---|---|---|
committer | Jason Song <i@wolfogre.com> | 2022-12-05 10:08:17 +0100 |
commit | 7920109e895138b6db7825f80241bc17192e07ad (patch) | |
tree | 4baeadb642a0cf2484d851d5c39474e96e870b67 /README.md | |
parent | feat: adjust container name format (#1) (diff) | |
parent | build(deps): bump megalinter/megalinter from 6.14.0 to 6.15.0 (#1475) (diff) | |
download | forgejo-act-7920109e895138b6db7825f80241bc17192e07ad.tar.xz forgejo-act-7920109e895138b6db7825f80241bc17192e07ad.zip |
Merge tag 'nektos/v0.2.34'v0.234.0
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -55,7 +55,7 @@ If you are using Linux, you will need to [install Docker Engine](https://docs.do brew install act ``` -or if you want to install version based on latest commit, you can run below (it requires compiler to be installed installed but Homebrew will suggest you how to install it, if you don't have it): +or if you want to install version based on latest commit, you can run below (it requires compiler to be installed but Homebrew will suggest you how to install it, if you don't have it): ```shell brew install act --HEAD @@ -162,6 +162,9 @@ act pull_request # Run a specific job: act -j test +# Run a job in a specific workflow (useful if you have duplicate job names) +act -j lint -W .github/workflows/checks.yml + # Run in dry-run mode: act -n |