Skip to content

Commit

Permalink
Add GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
brunexgeek committed Dec 8, 2024
1 parent 3083327 commit 136b936
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: C/C++ CI

on: [push]

jobs:
build:

runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v1
- name: dependencies
run: sudo apt-get install cmake make gcc
- name: prepare
run: cmake .
- name: compilation
run: make

0 comments on commit 136b936

Please sign in to comment.