Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 1.09 KB

README.md

File metadata and controls

41 lines (31 loc) · 1.09 KB
C++ Logo

CMake Dependency Submission

Calculates dependencies for a cmake project and submits the list to the Dependency Submission API

Github dependency graph

2022-12-01_09-57

Setup

name: CMake Dependency Submission
on:                        
  push:
    branches:
      - main               

jobs:
  dependency-submission:
    runs-on: ubuntu-latest 
    permissions: # The Dependency Submission API requires write permission
      contents: write      
    steps:
      - name: Checkout Repository     
        uses: actions/checkout@v3       

      - name: Dependency Submission
        uses: brenocq/cmake-dependency-submission@main
        with:
          testing-action: "Hello world!"  

License

This project is licensed under the MIT License - check LICENSE for details.