Merge pull request #26 from lambdalisue/dependabot/cargo/windows-0.51.0 #95
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: Test | |
on: [push] | |
jobs: | |
fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Update local toolchain | |
run: | | |
rustup update | |
rustup component add rustfmt | |
- name: Toolchain info | |
run: | | |
rustc --version | |
cargo --version --verbose | |
cargo fmt --version | |
- name: Format | |
run: | | |
cargo fmt | |
- name: Diff check | |
run: | | |
test -z "$(git status -s)" | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Update local toolchain | |
run: | | |
rustup update | |
rustup component add clippy | |
- name: Toolchain info | |
run: | | |
rustc --version | |
cargo --version --verbose | |
cargo clippy --version | |
- name: Clippy check | |
run: | | |
cargo clippy --all-features --all-targets | |
test: | |
strategy: | |
matrix: | |
runner: [ubuntu-latest, macos-latest, windows-latest] | |
env: | |
RUNNER: ${{ matrix.runner }} | |
runs-on: ${{ matrix.runner }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Update local toolchain | |
run: | | |
rustup update | |
rustup component add llvm-tools-preview | |
cargo install cargo-llvm-cov | |
- name: Toolchain info | |
run: | | |
rustc --version | |
cargo --version --verbose | |
cargo llvm-cov --version | |
- name: Test | |
run: | | |
cargo llvm-cov --all-features --lcov --output-path lcov.info | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos | |
files: lcov.info | |
env_vars: RUNNER | |
fail_ci_if_error: true |