Skip to content

Added CI/CD pipeline #1

Added CI/CD pipeline

Added CI/CD pipeline #1

Workflow file for this run

name: CI Pipeline
on:
push:
branches: [ "main", "dev" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libfuse-dev
- name: Build
run: make || echo "No Makefile yet"
- name: Run tests
run: echo "Tests will be added later"