Move to sourcehut. #4
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 |