Go to file
2023-06-03 22:46:42 +03:30
.github/workflows bump: rust to 1.70.0 2023-06-03 22:46:42 +03:30
integration-test [bump] rust to 1.42.0 2020-03-12 21:57:29 +01:00
.gitignore [doc][test] add 'args' to usage and add integration test 2019-01-26 00:49:58 +01:00
action.yml [feat] meta data for github action 2019-12-19 14:08:44 +01:00
Dockerfile bump: rust to 1.70.0 2023-06-03 22:46:42 +03:30
entrypoint.sh [bootstrap] github action 2019-01-26 00:21:00 +01:00
LICENSE [bootstrap] github action 2019-01-26 00:21:00 +01:00
README.md docs: change README after deprecation 2023-06-02 22:38:53 +03:30

Rust Github Action

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

Conventional Commits

What's inside the "box":

  • Rust 1.70.0
  • 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