v1.26.0 #239
Workflow file for this run
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
on: [push, pull_request] | |
name: Test and Build | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
rust-toolchain: [stable] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Cache build artifacts | |
id: cache-cargo | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: test-${{ runner.os }}-cargo-${{ matrix.rust-toolchain }} | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust-toolchain }} | |
components: rustfmt | |
override: true | |
- name: Install build headers | |
run: sudo apt-get install libstrophe-dev | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
- name: Verify versions | |
run: rustc --version && rustup --version && cargo --version | |
- name: Build code (default features) | |
run: cargo build | |
if: ${{ matrix.os != 'ubuntu-latest' }} | |
- name: Build code (all features) | |
run: cargo build --all-features | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
- name: Test code | |
run: cargo test | |
- name: Check code style | |
run: cargo fmt -- --check |