Skip to content

[Enhancement] CI/CD Pipeline #19

@marctjones

Description

@marctjones

Summary

Set up GitHub Actions CI/CD pipeline.

Priority: Medium - Important for project health


Deliverables

Build & Test

# .github/workflows/ci.yml
name: CI

on: [push, pull_request]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@stable
      - run: cargo build --all
      - run: cargo test --all
      - run: cargo clippy -- -D warnings
      - run: cargo fmt --check

Release

# .github/workflows/release.yml
name: Release

on:
  push:
    tags: ['v*']

jobs:
  release:
    runs-on: ubuntu-latest
    steps:
      - Build binaries
      - Create GitHub release
      - Upload artifacts

Features

  • Build on push/PR
  • Run tests
  • Clippy linting
  • Rustfmt check
  • Release binaries on tag
  • Changelog generation

Tasks

  • Create CI workflow
  • Create release workflow
  • Add badges to README
  • Set up Dependabot

Success Criteria

  • PRs show build status
  • Releases have prebuilt binaries
  • Code quality enforced automatically

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions