Skip to content

Commit

Permalink
Added Test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
programerr01 authored Aug 11, 2024
1 parent bec23e0 commit eb203bb
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: C/C++ CI

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

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install dependencies
run: sudo apt-get install -y build-essential

- name: Build with Make
run: make

- name: Run tests
run: make test # Adjust if your tests have a different target

0 comments on commit eb203bb

Please sign in to comment.