Skip to content

Commit

Permalink
Add Github action workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
regexident committed Feb 15, 2024
1 parent a1323d6 commit 2520fc8
Showing 1 changed file with 97 additions and 0 deletions.
97 changes: 97 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
name: Rust

on:
push:
branches: [main]
pull_request:
branches: [main, "**"]
paths-ignore:
- "CHANGELOG.md"
schedule:
- cron: "0 3 * * 0-6"

jobs:
info:
name: Rust Info
runs-on: ubuntu-latest
steps:
- name: Rustup Show
shell: bash
run: rustup show
- name: Rustup Version
shell: bash
run: rustup --version

check:
name: Check
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
- run: cargo check

test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
components: rust-src
- run: cargo install cargo-expand
- run: cargo test

fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
components: rustfmt
- run: cargo fmt --all -- --check

clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
components: clippy
- run: cargo clippy -- -D warnings

minimal_versions:
name: Compile and test with minimal versions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly
- uses: taiki-e/install-action@cargo-hack
- uses: taiki-e/install-action@cargo-minimal-versions
- name: minimal-versions check
run: cargo minimal-versions check --workspace --all-features --ignore-private -v
- name: minimal-versions build
run: cargo minimal-versions build --workspace --all-features --ignore-private -v
- name: minimal-versions test
run: cargo minimal-versions test --release --workspace --all-features -v
continue-on-error: true

msrv:
name: Verify minimal supported rust version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly
- uses: taiki-e/install-action@cargo-hack
- run: cargo hack check --rust-version --workspace --all-targets --ignore-private

0 comments on commit 2520fc8

Please sign in to comment.