Skip to content

Update 'yansi' to 1.0.0-rc. #32

Update 'yansi' to 1.0.0-rc.

Update 'yansi' to 1.0.0-rc. #32

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
name: "${{ matrix.os.name }} ${{ matrix.test.name }}"
strategy:
matrix:
os:
- name: Linux
distro: ubuntu-latest
- name: Windows
distro: windows-latest
- name: macOS
distro: macOS-latest
test:
- name: Beta
toolchain: beta
flag:
- name: Nightly
toolchain: nightly
flag: "--all-features"
runs-on: ${{ matrix.os.distro }}
steps:
- name: Checkout Sources
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.test.toolchain }}
override: true
- name: Run Tests
uses: actions-rs/cargo@v1
with:
command: test
args: ${{ matrix.test.flag }}