A runner for Gitea based on act.
Go to file
ChristopherHX 268a69b6d1
fix: use moby/go-archive due to deprecation (#102)
2025-05-03 11:12:48 +02:00
.github build(deps): bump megalinter/megalinter (#89) 2025-04-25 22:52:13 +02:00
.vscode fix: update artifact server to address GHSL-2023-004 (#1565) 2023-01-16 21:01:54 +00:00
cmd core(deps): bump golang-cilint to v2.0.2 (#83) 2025-04-25 21:58:30 +02:00
pkg fix: use moby/go-archive due to deprecation (#102) 2025-05-03 11:12:48 +02:00
.codespellrc Add codespell support (config, workflow to detect/not fix) and make it fix few typos (#2296) 2024-04-19 09:22:45 +00:00
.editorconfig ci(choco): update chocolatey to 1.1.0 (#1164) 2022-05-23 19:05:49 +00:00
.gitignore revert auto changelog generator 2022-06-20 17:02:49 -07:00
.gitleaksignore Update .gitleaksignore (#25) 2025-01-29 18:57:08 +01:00
.golangci.yml core(deps): bump golang-cilint to v2.0.2 (#83) 2025-04-25 21:58:30 +02:00
.goreleaser.yml Use act as bin name (#22) 2025-01-29 17:22:24 +01: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 ci(mergify): upgrade configuration to current format (#2547) 2024-12-25 02:00:07 +00: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
CODEOWNERS Update CODEOWNERS to use 'act-maintainers' team 2021-03-29 10:22:33 -07:00
CONTRIBUTING.md Update Readme and issue templates (#40) 2025-01-31 17:54:54 +01:00
LICENSE Update docs, file formatting and docker images (#766) 2021-08-09 09:07:26 -07:00
Makefile chore: upgrade dependencies (#2589) 2024-12-24 13:12:24 -08:00
README.md Update Readme and issue templates (#40) 2025-01-31 17:54:54 +01:00
VERIFICATION
VERSION bumo VERSION (#77) 2025-03-29 13:52:48 +01:00
act-cli.nuspec
codecov.yml Actions Artifacts v4 backend (#2224) 2024-05-20 20:00:04 +00:00
go.mod fix: use moby/go-archive due to deprecation (#102) 2025-05-03 11:12:48 +02:00
go.sum build(deps): bump the dependencies group with 5 updates (#100) 2025-05-03 10:59:48 +02:00
install.sh feat: Adding in logic to check if act needs to be downloaded (#2575) 2024-12-25 01:43:09 +00:00
main.go feat: Support graceful job step cancellation (#69) 2025-03-29 12:27:36 +01:00
main_test.go feat: Support graceful job step cancellation (#69) 2025-03-29 12:27:36 +01:00

README.md

act-logo

Overview

"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 on Discussions!

Contributing

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

Manually building from source

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