From 5fe4b8dfa5cf0003b8591a22416edf0d8fac5ff8 Mon Sep 17 00:00:00 2001 From: Corwin Date: Tue, 5 Dec 2023 21:06:39 +0000 Subject: [PATCH] format --- .github/workflows/build-and-test.yml | 64 ++++++++++++++-------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 22fbc1d4..ef187281 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -2,11 +2,11 @@ name: Rust on: push: - branches: [ master ] + branches: [master] pull_request: - branches: [ master ] + branches: [master] schedule: - - cron: '10 6 * * *' + - cron: "10 6 * * *" env: CARGO_TERM_COLOR: always @@ -16,35 +16,35 @@ jobs: name: Just CI runs-on: ubuntu-22.04 steps: - - name: Set CARGO_TARGET_DIR - run: echo "CARGO_TARGET_DIR=$HOME/target" >> $GITHUB_ENV - - name: Install build tools - run: sudo apt-get update && sudo apt-get install build-essential libelf-dev zip -y - - name: Install Miri - run: | + - name: Set CARGO_TARGET_DIR + run: echo "CARGO_TARGET_DIR=$HOME/target" >> $GITHUB_ENV + - name: Install build tools + run: sudo apt-get update && sudo apt-get install build-essential libelf-dev zip -y + - name: Install Miri + run: | rustup toolchain install nightly --component miri rustup override set nightly cargo miri setup - - uses: actions/checkout@v4 - - name: Cache - uses: actions/cache@v3 - with: - path: | - ~/.cargo/registry - ~/.cargo/git - ~/target - key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - - name: install mgba-test-runner - run: cargo install --path emulator/test-runner --verbose - - uses: extractions/setup-just@v1 - - name: Setup mdBook - uses: peaceiris/actions-mdbook@v1 - with: - mdbook-version: '0.4.13' - - name: Build and test all crates - run: just ci - - name: Upload build artifacts - uses: actions/upload-artifact@v3 - with: - name: example-games - path: ~/target/*.gba + - uses: actions/checkout@v4 + - name: Cache + uses: actions/cache@v3 + with: + path: | + ~/.cargo/registry + ~/.cargo/git + ~/target + key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} + - name: install mgba-test-runner + run: cargo install --path emulator/test-runner --verbose + - uses: extractions/setup-just@v1 + - name: Setup mdBook + uses: peaceiris/actions-mdbook@v1 + with: + mdbook-version: "0.4.13" + - name: Build and test all crates + run: just ci + - name: Upload build artifacts + uses: actions/upload-artifact@v3 + with: + name: example-games + path: ~/target/*.gba