mkenv 1.0.2

Lightweight yet useful library to help you define the environment your app needs
Documentation
name: Rust

on:
  push:
    branches: [ "master" ]
  pull_request:
    branches: [ "master" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  test:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v4
    - uses: dtolnay/rust-toolchain@stable
      with:
        toolchain: 1.92.0
    - name: Build
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose