diff options
author | Dario Nieuwenhuis <dirbaio@dirbaio.net> | 2021-07-24 14:19:18 +0200 |
---|---|---|
committer | Dario Nieuwenhuis <dirbaio@dirbaio.net> | 2021-07-24 14:26:14 +0200 |
commit | 5c0dbc8ea26eb982a42293bd795bc0252e5bb72a (patch) | |
tree | c4d2b118eef382f8682ff61d3f7dc29d6be62df4 /.github/workflows | |
parent | e76cb6bacd2305baa210a8ceb64c159c418cd4d4 (diff) | |
download | nrf-softdevice-5c0dbc8ea26eb982a42293bd795bc0252e5bb72a.zip |
ci: use nightly version from rust-toolchain.toml instead of latest.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/rust.yml | 39 |
1 files changed, 15 insertions, 24 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 225b523..5c5f8e2 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -2,37 +2,28 @@ name: Rust on: push: - branches: [ master ] + branches: [master] pull_request: - branches: [ master ] + branches: [master] env: CARGO_TERM_COLOR: always jobs: build: - runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/cache@v2 - with: - path: | - ~/.cargo/registry - ~/.cargo/git - target - key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - - uses: actions-rs/toolchain@v1 - with: - toolchain: nightly - target: thumbv7em-none-eabihf - override: true - components: rustfmt - - - name: Build - run: ./ci.sh - - - name: Format - run: cargo fmt --verbose - + - uses: actions/checkout@v2 + - uses: actions/cache@v2 + with: + path: | + ~/.cargo/registry + ~/.cargo/git + target + key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} + + - name: Check fmt + run: cargo fmt -- --check + - name: Build + run: ./ci.sh |