No description
  • Go 81.2%
  • JavaScript 17.4%
  • Shell 1.1%
  • Makefile 0.3%
Find a file
Ella Yael 027ad385a2
Some checks failed
Codespell / Check for spelling errors (push) Failing after 1s
Merge pull request 'chore(config): migrate Renovate config' (#7) from renovate/migrate-config into master
Reviewed-on: #7
2026-05-14 15:33:43 +00:00
.github chore: update actions/checkout to v6 and improve linting config 2026-01-20 05:22:27 +01:00
.vscode Setting up Renovate. 2026-02-12 16:18:42 +01:00
cmd feat: --validate and --strict (#2717) 2025-06-11 22:02:16 +00:00
pkg chore: update actions/checkout to v6 and improve linting config 2026-01-20 05:22:27 +01:00
.actrc feat: support custom GITHUB_RUN_ID, GITHUB_RUN_NUMBER (#369) 2020-09-22 14:13:29 -07:00
.codespellrc chore: update actions/checkout to v6 and improve linting config 2026-01-20 05:22:27 +01:00
.editorconfig ci(choco): update chocolatey to 1.1.0 (#1164) 2022-05-23 19:05:49 +00:00
.gitignore chore: clean up test data and improve code organization 2026-01-20 07:00:26 +01:00
.gitleaksignore Update .gitleaksignore (#2676) 2025-02-21 21:56:33 +00:00
.golangci.yml chore: upgrade dependencies (#2589) 2024-12-24 13:12:24 -08:00
.goreleaser.yml ci: fix goreleaser config (#5276) 2025-06-11 21:43:53 +00:00
.markdownlint.yml ci: replace superlinter with megalinter (#923) 2021-12-22 09:29:43 -08:00
.mega-linter.yml feat: add check for newer versions (#1562) 2023-01-15 10:30:41 +00:00
.mergify.yml chore(mergify) Add merge queue configuration to .mergify.yml (#5944) 2025-11-25 21:14:47 -08:00
.prettierignore Update docs, file formatting and docker images (#766) 2021-08-09 09:07:26 -07:00
.prettierrc.yml Update docs, file formatting and docker images (#766) 2021-08-09 09:07:26 -07:00
act-cli.nuspec Fix 132 - support for chocolatey install (#144) 2020-03-09 17:49:55 -07:00
codecov.yml chore: add renovate configuration for dependency automation 2026-01-20 04:45:13 +01:00
CONTRIBUTING.md docs: Remove Gitter (#2678) 2025-05-22 21:19:07 +00:00
go.mod build(deps): bump github.com/cloudflare/circl (#15) 2026-02-28 09:11:55 +01:00
go.sum build(deps): bump github.com/cloudflare/circl (#15) 2026-02-28 09:11:55 +01:00
IMAGES.md chore: remove repetitive words (#2259) 2024-03-28 23:14:53 +00:00
install.sh feat: Adding in logic to check if act needs to be downloaded (#2575) 2024-12-25 01:43:09 +00:00
LICENSE Update docs, file formatting and docker images (#766) 2021-08-09 09:07:26 -07:00
main.go feat: Support graceful job step cancellation (#2714) 2025-03-29 17:00:37 +00:00
main_test.go feat: Support graceful job step cancellation (#2714) 2025-03-29 17:00:37 +00:00
Makefile chore(deps): Security update December 2025 (#5984) 2025-12-28 11:17:57 +00:00
README.md docs: Remove Gitter (#2678) 2025-05-22 21:19:07 +00:00
renovate.json chore(config): migrate config renovate.json 2026-05-14 15:33:10 +00:00
VERIFICATION Fix 132 - support for chocolatey install (#144) 2020-03-09 17:49:55 -07:00
VERSION chore: clean up test data and improve code organization 2026-01-20 07:00:26 +01:00

act-logo

Overview push Go Report Card awesome-runners

"Think globally, act locally"

Run your GitHub Actions locally! Why would you want to do this? Two reasons:

  • Fast Feedback - Rather than having to commit/push every time you want to test out the changes you are making to your .github/workflows/ files (or for any changes to embedded GitHub actions), you can use act to run the actions locally. The environment variables and filesystem are all configured to match what GitHub provides.
  • Local Task Runner - I love make. However, I also hate repeating myself. With act, you can use the GitHub Actions defined in your .github/workflows/ to replace your Makefile!

Tip

Now Manage and Run Act Directly From VS Code!
Check out the GitHub Local Actions Visual Studio Code extension which allows you to leverage the power of act to run and test workflows locally without leaving your editor.

How Does It Work?

When you run act it reads in your GitHub Actions from .github/workflows/ and determines the set of actions that need to be run. It uses the Docker API to either pull or build the necessary images, as defined in your workflow files and finally determines the execution path based on the dependencies that were defined. Once it has the execution path, it then uses the Docker API to run containers for each action based on the images prepared earlier. The environment variables and filesystem are all configured to match what GitHub provides.

Let's see it in action with a sample repo!

Demo

Act User Guide

Please look at the act user guide for more documentation.

Support

Need help? Ask in discussions!

Contributing

Want to contribute to act? Awesome! Check out the contributing guidelines to get involved.

Manually building from source

  • Install Go tools 1.20+ - (https://golang.org/doc/install)
  • Clone this repo git clone git@github.com:nektos/act.git
  • Run unit tests with make test
  • Build and install: make install