You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Document how to use act to test GitHub Actions workflows locally
- Include installation instructions for act
- Provide examples for quick tests and full workflow runs
- Add faster alternative for testing CMake configuration manually
Copy file name to clipboardExpand all lines: README.md
+65Lines changed: 65 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -114,6 +114,71 @@ The `VCPKG_TARGET_TRIPLET=x64-linux-release` option ensures vcpkg only builds re
114
114
cmake --build build --parallel
115
115
```
116
116
117
+
### Testing CI/CD Locally
118
+
119
+
You can test the GitHub Actions workflow locally before pushing using [`act`](https://github.com/nektos/act), which runs GitHub Actions workflows in Docker containers.
0 commit comments