Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create c-cpp.yml workflow #1

Merged
merged 5 commits into from
Dec 30, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Create c-cpp.yml
simons-public authored Dec 30, 2024

Verified

This commit was signed with the committer’s verified signature.
renovate-bot Mend Renovate
commit 124ddd37890bfbbabd4c7db316b7a2beb8092b69
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: [ "**" ]
pull_request:
branches: [ "**" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: install dependencies
run: sudo apt install zfsutils-linux build-dep cmake
- name: configure
run: ./configure
- name: make
run: make
- name: make install
run: make install
- name: test run
run: /bin/snapzap || true