From 7a01f5b77cd9f0cea4394f622a929c8956f7834a Mon Sep 17 00:00:00 2001 From: zhiltsov-max Date: Thu, 29 Jan 2026 00:12:04 +0200 Subject: [PATCH] Fix ci --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 31f8406..ee66427 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ permissions: contents: read jobs: - linux: + build: runs-on: ${{ matrix.platform.runner }} strategy: matrix: @@ -30,11 +30,11 @@ jobs: target: aarch64-apple-darwin build_profile: ["release"] steps: - - name: Output rust version for educational purposes + - uses: actions/checkout@v4 + - name: Build run: | rustup --version cargo --version - - name: Build - run: cargo build --profile ${{ matrix.build_profile }} --target ${{ matrix.platform.target }} + cargo build --profile ${{ matrix.build_profile }} --target ${{ matrix.platform.target }} - name: Test run: cargo test --frozen --profile ${{ matrix.build_profile }} --target ${{ matrix.platform.target }}