From cfd3086a168105282a8cf3010503676695c83a0a Mon Sep 17 00:00:00 2001 From: Rin Arakaki Date: Mon, 13 Feb 2023 02:28:26 +0900 Subject: [PATCH] Update README.md --- README.md | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 375c1c4..3cb6adf 100644 --- a/README.md +++ b/README.md @@ -23,19 +23,17 @@ command on a Rust language project. ```yaml on: [push] - name: CI - jobs: build_and_test: name: Rust project runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 + - uses: actions/checkout@v3 + - uses: synthet-ic/action-rustup@main with: toolchain: stable - - uses: actions-rs/cargo@v1 + - uses: synthet-ic/action-cargo@main with: command: build args: --release --all-features @@ -55,8 +53,8 @@ jobs: name: Rust project runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 + - uses: actions/checkout@v3 + - uses: synthet-ic/action-rustup@main with: toolchain: stable - run: cargo build --release --all-features @@ -104,13 +102,13 @@ jobs: name: Linux ARMv7 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 + - uses: actions/checkout@v3 + - uses: synthet-ic/action-rustup@main with: toolchain: stable target: armv7-unknown-linux-gnueabihf override: true - - uses: actions-rs/cargo@v1 + - uses: synthet-ic/action-cargo@main with: use-cross: true command: build