Run Github actions locally
Run GitHub actions locally with act to skip the long feedback loop! It uses Docker to pull images and run workflows right on your machine.
# Run the `push` event
act
# Run a specific event or job
act pull_request
act -j test_unit
Need a GitHub token? Use the -s
flag with the GitHub CLI:
act -s GITHUB_TOKEN="$(gh auth token)"
Quick, easy, and no more waiting for GitHub to run workflows!