This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
Merge pull request #119 from hadronized/release/4.4 #272
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Test | |
run: cargo test --verbose --all-features | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Test | |
run: cargo test --verbose --all-features | |
build-macosx: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Test | |
run: cargo test --verbose --all-features | |
quality: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install dependencies | |
run: | | |
cargo install --force cargo-sync-readme | |
rustup component add rustfmt | |
- name: cargo sync-readme | |
run: | | |
cargo sync-readme -c | |
- name: rustfmt | |
run: cargo fmt -- --check |