fledge 0.5.0

Corvid-themed project scaffolding CLI — get your projects ready to fly.
name: CI

on:
  push:
    branches: [main]
  pull_request:
    branches: [main]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        go-version: ["1.22", "1.23"]
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-go@v5
        with:
          go-version: {% raw %}${{ matrix.go-version }}{% endraw %}
      - run: go test ./...
      - run: go vet ./...