on: [push, pull_request] name: CI jobs: check: name: Check runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: stable override: true - uses: actions-rs/cargo@v1 with: command: check args: --workspace --all-targets generated: name: Generated runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 with: submodules: true - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: stable override: true - name: Run generator uses: actions-rs/cargo@v1 with: command: run args: -p generator - name: Format generated results uses: actions-rs/cargo@v1 with: command: fmt args: -p ash - name: Diff autogen result run: git diff --quiet || (echo "::error::Generated files are different, please regenerate with cargo run -p generator!"; git diff; false) test: name: Test Suite runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: stable override: true - name: Test all targets uses: actions-rs/cargo@v1 with: command: test args: --workspace --all-targets - name: Test docs uses: actions-rs/cargo@v1 with: command: test args: --workspace --doc fmt: name: Rustfmt runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: stable override: true - run: rustup component add rustfmt - uses: actions-rs/cargo@v1 with: command: fmt args: --all -- --check clippy: name: Clippy runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: stable override: true - run: rustup component add clippy - uses: actions-rs/cargo@v1 with: command: clippy args: --workspace --all-targets -- -D warnings