From 20482e6c3131dba8de003edaf3ccb1529fc25291 Mon Sep 17 00:00:00 2001 From: pythcoiner Date: Fri, 3 Jan 2025 05:48:20 +0100 Subject: [PATCH] u --- .github/workflows/main.yml | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2a982d8..b72d996 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,8 +42,29 @@ jobs: toolchain: ${{ matrix.toolchain }} override: true profile: minimal - - name: dependencies - if: runner.os == 'Linux' - run: sudo apt-get update && sudo apt-get install -y libevent-dev + # - name: dependencies + # if: runner.os == 'Linux' + # run: sudo apt-get update && sudo apt-get install -y libevent-dev - name: tests run: cargo test --verbose --color always -- --nocapture + build: + needs: tests + strategy: + matrix: + toolchain: + - 1.75 + os: + - ubuntu-latest + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v1 + - uses: actions-rs/toolchain@v1 + with: + toolchain: ${{ matrix.toolchain }} + override: true + profile: minimal + # - name: dependencies + # if: runner.os == 'Linux' + # run: sudo apt-get update && sudo apt-get install -y libevent-dev + - name: tests + run: cargo build --verbose --color always -- --nocapture