From 02af635e7b73676ef2529983cc5b1b0f890701ea Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Tue, 1 Dec 2020 17:52:06 +0100 Subject: Fix CI --- .github/workflows/rust.yml | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index b2505e80d..a0eefd3a9 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -2,24 +2,23 @@ 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-rs/toolchain@v1 - with: - toolchain: nightly - target: thumbv7em-none-eabihf - override: true - - name: Build - run: ./test-build.sh + - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + toolchain: nightly + target: thumbv7em-none-eabi + override: true + - name: Build + run: ./test-build.sh -- cgit