CI #34
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 | |
env: | |
RUST_BACKTRACE: 1 | |
jobs: | |
########################## | |
# Linting and formatting # | |
########################## | |
clippy: | |
if: ${{ github.ref == 'refs/heads/master' | |
|| startsWith(github.ref, 'refs/tags/') | |
|| !contains(github.event.head_commit.message, '[skip ci]') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
components: clippy | |
- uses: Swatinem/rust-cache@v1 | |
if: ${{ !contains(github.event.head_commit.message, '[fresh ci]') }} | |
- run: make lint | |
rustfmt: | |
if: ${{ github.ref == 'refs/heads/master' | |
|| startsWith(github.ref, 'refs/tags/') | |
|| !contains(github.event.head_commit.message, '[skip ci]') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly | |
components: rustfmt | |
- run: make cargo.fmt check=yes | |
################# | |
# Documentation # | |
################# | |
rustdoc: | |
if: ${{ github.ref == 'refs/heads/master' | |
|| startsWith(github.ref, 'refs/tags/') | |
|| !contains(github.event.head_commit.message, '[skip ci]') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
- uses: Swatinem/rust-cache@v1 | |
if: ${{ !contains(github.event.head_commit.message, '[fresh ci]') }} | |
- run: make doc |