From eb847fdb802ee424e8ecd4ed5636cd176c9adf7e Mon Sep 17 00:00:00 2001 From: Darshan <35736874+darshankabariya@users.noreply.github.com> Date: Tue, 16 Dec 2025 17:53:30 +0530 Subject: [PATCH] fix: ci workflow (#125) --- .github/workflows/codecov.yml | 2 +- .github/workflows/main.yml | 16 +++++++++------- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 0e8238f..15d3dfa 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -4,7 +4,7 @@ on: branches: - master -name: Codecov +name: Code Coverage jobs: test: diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 72f97de..79592f1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,17 +10,18 @@ name: CI jobs: check: - name: Check + name: Build strategy: matrix: include: - os: ubuntu-latest - toolchain: stable-x86_64-unknown-linux-gnu + toolchain: stable #- os: windows-latest # toolchain: stable-x86_64-pc-windows-gnu - os: macos-latest - toolchain: stable-x86_64-apple-darwin + toolchain: stable runs-on: ${{ matrix.os }} + timeout-minutes: 60 steps: - uses: actions/checkout@v3 with: @@ -39,17 +40,18 @@ jobs: command: check test: - name: Test Suite + name: Test strategy: matrix: include: - os: ubuntu-latest - toolchain: stable-x86_64-unknown-linux-gnu + toolchain: stable #- os: windows-latest # toolchain: stable-x86_64-pc-windows-gnu - os: macos-latest - toolchain: stable-x86_64-apple-darwin + toolchain: stable runs-on: ${{ matrix.os }} + timeout-minutes: 60 steps: - uses: actions/checkout@v3 with: @@ -72,7 +74,7 @@ jobs: command: test lints: - name: Rust lints + name: Lint runs-on: ubuntu-latest steps: - uses: actions/checkout@v3