Skip to content

ci: add GitHub Actions build pipeline #1

ci: add GitHub Actions build pipeline

ci: add GitHub Actions build pipeline #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build with Make
run: |
cd src
make
- name: Verify binary
run: |
test -f src/myshell && echo "βœ… Build successful" || exit 1