docker-env 0.1.0

Typed environment variable and secret handling for Dockerised Rust apps.
Documentation
name: Rust Tests
on:
  push:
    branches: [main]
  pull_request:
    branches: [main]
jobs:
  test:
    strategy:
      matrix:
        toolchain: [stable, beta, nightly]
    name: Test on ${{ matrix.toolchain }}
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v4
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: ${{ matrix.toolchain }}
          override: true

      - name: Run cargo test
        run: cargo test --all --verbose