Skip to content
This repository has been archived by the owner on Nov 24, 2023. It is now read-only.

README update aiming to clarify things for less experienced rustaceans #52

README update aiming to clarify things for less experienced rustaceans

README update aiming to clarify things for less experienced rustaceans #52

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@master
- name: Install Rust (rustup)
run: rustup update nightly --no-self-update && rustup default nightly
shell: bash
- run: cargo test --all
- run: cargo test --all -- --ignored
rustfmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install Rust
run: rustup update stable && rustup default stable && rustup component add rustfmt
- run: cargo fmt --check