Skip to content

Remove nightly target #181

Remove nightly target

Remove nightly target #181

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
- uses: actions/checkout@v4
- run: cargo build --all
- run: cargo fmt --all -- --check
- run: cargo clippy -- -D warnings
- run: cargo test --all
- run: |
cargo install cargo-tarpaulin
cargo tarpaulin --out Xml
bash <(curl -s https://codecov.io/bash)
if: matrix.os == 'ubuntu-latest'