├── .gitattributes ├── .github ├── dependabot.yaml └── workflows │ ├── build.yaml │ ├── check.yaml │ └── test.yaml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── action.yml ├── dist ├── index.js └── package.json ├── eslint.config.ts ├── lefthook.yaml ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── sample ├── CMakeLists.txt ├── include │ ├── is_even.hpp │ └── is_odd.hpp └── main.cpp ├── src ├── action.ts ├── coveralls.ts ├── deps │ └── index.ts ├── gcovr.ts └── index.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/.github/workflows/check.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | use-node-version=24.11.1 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | pnpm-lock.yaml 3 | README.md 4 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /eslint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/eslint.config.ts -------------------------------------------------------------------------------- /lefthook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/lefthook.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /sample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/sample/CMakeLists.txt -------------------------------------------------------------------------------- /sample/include/is_even.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/sample/include/is_even.hpp -------------------------------------------------------------------------------- /sample/include/is_odd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/sample/include/is_odd.hpp -------------------------------------------------------------------------------- /sample/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/sample/main.cpp -------------------------------------------------------------------------------- /src/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/src/action.ts -------------------------------------------------------------------------------- /src/coveralls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/src/coveralls.ts -------------------------------------------------------------------------------- /src/deps/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/src/deps/index.ts -------------------------------------------------------------------------------- /src/gcovr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/src/gcovr.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threeal/gcovr-action/HEAD/tsconfig.json --------------------------------------------------------------------------------