bleur 0.0.5

That buddy that will get everything ready for you
Documentation
name: Test CI

on: [push, pull_request]

jobs:
  test-flake:
    runs-on: self-hosted

    steps:
      - name: Check out the repository
        uses: actions/checkout@v6

      - name: Check up flake configuration
        run: nix flake check --all-systems --show-trace

  test-project:
    runs-on: self-hosted

    steps:
      - name: Check out the repository
        uses: actions/checkout@v6

      - name: Build project with Nix
        run: nix build

      # - name: Run cargo tests
      #   run: nix develop --command -- cargo test