Update copyright expiration to 2024 #258
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
name: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
rust: [stable, 1.74.0] | |
steps: | |
- name: Install Rust | |
uses: hecrj/setup-rust-action@v1 | |
with: | |
rust-version: ${{ matrix.rust }} | |
- uses: actions/checkout@master | |
- name: Install Tarpaulin | |
if: matrix.os == 'ubuntu-latest' && matrix.rust == 'stable' | |
run: cargo install cargo-tarpaulin | |
- name: Build | |
run: cargo build --verbose | |
- name: Run tests | |
run: cargo test --verbose | |
- name: Generate coverage report | |
if: matrix.os == 'ubuntu-latest' && matrix.rust == 'stable' | |
run: cargo tarpaulin --out Xml | |
- name: Upload coverage to Codecov | |
if: matrix.os == 'ubuntu-latest' && matrix.rust == 'stable' | |
uses: codecov/codecov-action@v3 | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Rust | |
uses: hecrj/setup-rust-action@v1 | |
with: | |
rust-version: stable | |
- uses: actions/checkout@master | |
- name: Check formatting | |
run: cargo fmt -- --check --config group_imports=StdExternalCrate | |
- name: Clippy | |
run: cargo clippy -- -D warnings -W clippy::pedantic | |
- name: markdownlint | |
uses: articulate/actions-markdownlint@v1 |