git-restrict

simple utility for git repo permission management
git clone https://git.parazyd.org/git-restrict
Log | Files | Refs | README | LICENSE

commit e2deff6ef087b4d2fc16dd2b73e022ef6c7dd004
parent 0484d2a0c353a4a3d7d78cda9ed9fab9f184d1eb
Author: parazyd <parazyd@users.noreply.github.com>
Date:   Sun,  4 Apr 2021 12:51:05 +0200

Create c-cpp.yml
Diffstat:
A.github/workflows/c-cpp.yml | 19+++++++++++++++++++
1 file changed, 19 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml @@ -0,0 +1,19 @@ +name: C/C++ CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: make + run: make + - name: make test + run: make test