Skip to content

Commit

Permalink
add a build action script
Browse files Browse the repository at this point in the history
Signed-off-by: He, Jing J <[email protected]>
  • Loading branch information
He, Jing J committed Apr 30, 2024
1 parent b6f5b4a commit 1c4ff3f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: C/C++ CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
actions: read
checks: read
contents: read
issues: write
pull-requests: write

jobs:
build:

runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
- name: build
run: make

0 comments on commit 1c4ff3f

Please sign in to comment.