https://github.com/arkedge/workflows-c2a
Common GitHub Actions workflow for C2A
https://github.com/arkedge/workflows-c2a
Last synced: 3 months ago
JSON representation
Common GitHub Actions workflow for C2A
- Host: GitHub
- URL: https://github.com/arkedge/workflows-c2a
- Owner: arkedge
- License: mit
- Created: 2023-01-25T08:27:31.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2026-03-26T17:04:02.000Z (3 months ago)
- Last Synced: 2026-03-27T07:17:19.576Z (3 months ago)
- Size: 227 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# workflows-c2a
Common GitHub Actions workflows for [C2A](https://github.com/ut-issl/c2a-core).
## Example Usage
- [build](./.github/workflows/build.yml)
This workflow build C2A on some environments (C/C++, Linux/Windows, gcc/clang/MSVC) and show warnings by [action-clang-tidy](https://github.com/arkedge/action-clang-tidy/).
```yml
name: Build C2A
on:
push:
branches:
- main
- develop
pull_request:
jobs:
build_c2a:
uses: arkedge/workflows-c2a/.github/workflows/build.yml@v2.1.0
```