rust-action/README.md
2023-08-10 19:43:43 +03:30

991 B

Rust Github Action

'Silverbullet' for a quickstart Rust CI based upon Github Actions

Conventional Commits

What's inside the "box":

  • Rust 1.71.1
  • Rustfmt
  • Clippy
  • Cargo Release
  • Cmake

Usage

In a file inside .github/workflows/quickstart.yml

name: Rust Example

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v1
      - uses: mirlahiji/rust-action@master
        with:
          args: cd integration-test && cargo fmt -- --check && cargo clippy -- -Dwarnings && cargo test

Thanks to @ icepuma for handing over the project and @ bwasty for Cmake