An open API service indexing awesome lists of open source software.

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

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
```