CI checks #1898
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 checks | |
on: [push, pull_request] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: 1.47.0 | |
override: true | |
# Ensure all code has been formatted with rustfmt | |
- run: rustup component add rustfmt | |
- name: Check formatting | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --all -- --check --color always | |
- run: rustup component add clippy | |
- name: Clippy check | |
uses: actions-rs/clippy-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
test: | |
name: Test on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: 1.47.0 | |
override: true | |
- name: cargo fetch | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fetch | |
- name: Build tests | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --all --verbose --exclude rage --all-features --tests | |
- name: Run tests | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --all --verbose --exclude rage --all-features | |
build: | |
name: Build target ${{ matrix.target }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
target: | |
- wasm32-unknown-unknown | |
- wasm32-wasi | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: 1.47.0 | |
override: true | |
- name: Add target | |
run: rustup target add ${{ matrix.target }} | |
- name: cargo fetch | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fetch | |
- name: Build for target | |
working-directory: ./age | |
run: cargo build --verbose --no-default-features --target ${{ matrix.target }} | |
codecov: | |
name: Code coverage | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Install linux build dependencies | |
run: sudo apt install libfuse-dev libpcsclite-dev | |
- name: Generate coverage report | |
uses: actions-rs/tarpaulin@v0.1 | |
with: | |
version: '0.13.3' | |
args: --all --release --all-features --timeout 180 --out Xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1.0.3 | |
with: | |
token: ${{secrets.CODECOV_TOKEN}} | |
doc-links: | |
name: Nightly lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
- name: cargo fetch | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fetch | |
# Ensure intra-documentation links all resolve correctly | |
# Requires #![deny(intra_doc_link_resolution_failure)] in crates. | |
- name: Check intra-doc links | |
uses: actions-rs/cargo@v1 | |
with: | |
command: doc | |
args: --all --exclude rage --all-features --document-private-items |