{"id":13393595,"url":"https://github.com/nektos/act","last_synced_at":"2025-05-12T17:45:40.087Z","repository":{"id":37242988,"uuid":"163883279","full_name":"nektos/act","owner":"nektos","description":"Run your GitHub Actions locally 🚀","archived":false,"fork":false,"pushed_at":"2025-05-04T12:13:25.000Z","size":10151,"stargazers_count":60992,"open_issues_count":221,"forks_count":1575,"subscribers_count":179,"default_branch":"master","last_synced_at":"2025-05-05T15:11:27.393Z","etag":null,"topics":["ci","devops","github-actions","golang"],"latest_commit_sha":null,"homepage":"https://nektosact.com","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nektos.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"cplee"}},"created_at":"2019-01-02T19:53:43.000Z","updated_at":"2025-05-05T15:04:25.000Z","dependencies_parsed_at":"2023-10-12T07:08:58.512Z","dependency_job_id":"7af0baa6-85ce-4ec4-a9f8-59a555d84784","html_url":"https://github.com/nektos/act","commit_stats":{"total_commits":847,"total_committers":157,"mean_commits":"5.3949044585987265","dds":0.807556080283353,"last_synced_commit":"c81a770bc5f8041c2c169e227996ea34ae62ec48"},"previous_names":[],"tags_count":87,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nektos%2Fact","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nektos%2Fact/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nektos%2Fact/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nektos%2Fact/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nektos","download_url":"https://codeload.github.com/nektos/act/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253789781,"owners_count":21964744,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ci","devops","github-actions","golang"],"created_at":"2024-07-30T17:00:56.638Z","updated_at":"2025-05-12T17:45:38.653Z","avatar_url":"https://github.com/nektos.png","language":"Go","readme":"![act-logo](https://raw.githubusercontent.com/wiki/nektos/act/img/logo-150.png)\n\n# Overview [![push](https://github.com/nektos/act/workflows/push/badge.svg?branch=master\u0026event=push)](https://github.com/nektos/act/actions) [![Join the chat at https://gitter.im/nektos/act](https://badges.gitter.im/nektos/act.svg)](https://gitter.im/nektos/act?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge) [![Go Report Card](https://goreportcard.com/badge/github.com/nektos/act)](https://goreportcard.com/report/github.com/nektos/act) [![awesome-runners](https://img.shields.io/badge/listed%20on-awesome--runners-blue.svg)](https://github.com/jonico/awesome-runners)\n\n\u003e \"Think globally, `act` locally\"\n\nRun your [GitHub Actions](https://developer.github.com/actions/) locally! Why would you want to do this? Two reasons:\n\n- **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](https://help.github.com/en/actions/configuring-and-managing-workflows/using-environment-variables#default-environment-variables) and [filesystem](https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners#filesystems-on-github-hosted-runners) are all configured to match what GitHub provides.\n- **Local Task Runner** - I love [make](\u003chttps://en.wikipedia.org/wiki/Make_(software)\u003e). However, I also hate repeating myself. With `act`, you can use the GitHub Actions defined in your `.github/workflows/` to replace your `Makefile`!\n\n\u003e [!TIP]\n\u003e **Now Manage and Run Act Directly From VS Code!**\u003cbr/\u003e\n\u003e Check out the [GitHub Local Actions](https://sanjulaganepola.github.io/github-local-actions-docs/) Visual Studio Code extension which allows you to leverage the power of `act` to run and test workflows locally without leaving your editor.\n\n# How Does It Work?\n\nWhen 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](https://help.github.com/en/actions/configuring-and-managing-workflows/using-environment-variables#default-environment-variables) and [filesystem](https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#file-systems) are all configured to match what GitHub provides.\n\nLet's see it in action with a [sample repo](https://github.com/cplee/github-actions-demo)!\n\n![Demo](https://raw.githubusercontent.com/wiki/nektos/act/quickstart/act-quickstart-2.gif)\n\n# Act User Guide\n\nPlease look at the [act user guide](https://nektosact.com) for more documentation.\n\n# Support\n\nNeed help? Ask on [Gitter](https://gitter.im/nektos/act)!\n\n# Contributing\n\nWant to contribute to act? Awesome! Check out the [contributing guidelines](CONTRIBUTING.md) to get involved.\n\n## Manually building from source\n\n- Install Go tools 1.20+ - (\u003chttps://golang.org/doc/install\u003e)\n- Clone this repo `git clone git@github.com:nektos/act.git`\n- Run unit tests with `make test`\n- Build and install: `make install`\n","funding_links":["https://github.com/sponsors/cplee"],"categories":["HarmonyOS","Go","Popular","开源类库","Community Resources","Github","Tools for Self-Hosting","Open source library","Go Tools and Frameworks","Pipelines","Tools \u0026 Utilities","Go Tools","网络服务","Uncategorized","Table of Contents","devops","golang","CI/CD","References","CICD","Contributing","Github tools","Tools","PHP","四、社区明星工具（提升效率神器）","Command line - Linux","Purpose","\u003ca name=\"Go\"\u003e\u003c/a\u003eGo","Bash"],"sub_categories":["Windows Manager","devops","GitHub Tools and Management","Snippets Manager","Development","Developer","Log Management","Interfaces","网络服务_其他","Uncategorized","Dev Tools","Install Nektos Act on Ubuntu Jammy","E-Books","Mesh networks","JavaScript Libraries for Machine Learning","PHP Dev Tools","3. 编程语言环境配置","Learning resources","A word about self-hosted action runner images / virtual environments and how to test locally"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnektos%2Fact","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnektos%2Fact","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnektos%2Fact/lists"}