Skip to content

Commit

Permalink
Create c-cpp.yml workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
simons-public authored Dec 30, 2024
1 parent d0ae59c commit cc26046
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: C/C++ CI

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

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: install dependencies
run: sudo apt install zfsutils-linux libzfslinux-dev build-essential cmake
- name: make
run: make
- name: make install
run: make install
- name: test run
run: /usr/local/bin/snapzap || true

0 comments on commit cc26046

Please sign in to comment.