Merge pull request #48 from dariocurr/dependabot/github_actions/devel… #103
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: Validate | |
on: | |
push: | |
branches: | |
- develop | |
- "hotfix*" | |
pull_request: | |
branches: | |
- develop | |
- "hotfix*" | |
types: | |
- edited | |
- opened | |
- ready_for_review | |
- reopened | |
- synchronize | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
audit: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/[email protected] | |
- name: Cache rust | |
uses: Swatinem/[email protected] | |
- name: Install cargo-audit | |
run: cargo install cargo-audit --locked | |
- name: Check audit | |
run: cargo audit --deny warnings | |
docs-lint-deps: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/[email protected] | |
- name: Cache rust | |
uses: Swatinem/[email protected] | |
- name: Check docs | |
run: cargo doc | |
- name: Check linting | |
run: cargo clippy -- --deny warnings | |
- name: Install cargo utils | |
run: | | |
cargo install cargo-udeps --locked | |
rustup toolchain install nightly | |
- name: Check dependencies | |
run: cargo +nightly udeps --workspace --exclude "env-settings*" | |
format: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/[email protected] | |
- name: Check formatting | |
run: cargo fmt --check | |
test: | |
if: github.event.pull_request.draft == false | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest] | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/[email protected] | |
- name: Cache rust | |
uses: Swatinem/[email protected] | |
- name: Run tests | |
run: cargo test -- --test-threads=1 |