Learn distributed systems by building them from scratch.
A GitHub Action for testing LittleClusters challenges in your CI/CD pipeline.
Add this workflow to your repository at .github/workflows/littleclusters.yaml:
name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: littleclusters/test@mainThe action runs lc test --so-far on every push to main and on pull requests.
For the full usage documentation, please see this guide.