dmenv 0.20.1

Simple and practical virtualenv manager for Python
Documentation
name: Run tests

on: [push]

jobs:
  test:

    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest, macos-latest, windows-latest]

    steps:
    - uses: actions/checkout@v1

    - name: Set up Python
      uses: actions/setup-python@v1
      with:
        python-version: 3.7

    - name: Install latest stable toolchain
      uses: actions-rs/toolchain@v1
      with:
        toolchain: stable
        override: true

    - name: "Build"
      uses: actions-rs/cargo@v1
      with:
        command: build
        args: --release

    - name: "Test"
      uses: actions-rs/cargo@v1
      with:
        command: test
        args: --release