diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 41135d61de03..31cbd8dd2cfb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -113,18 +113,20 @@ jobs: args: --workspace --all-features token: ${{ secrets.GITHUB_TOKEN }} - # test: - # name: Test (${{ matrix.platform }}) - # runs-on: ${{ matrix.platform }} - # strategy: - # matrix: - # platform: [ubuntu-20.04, macos-latest, windows-latest] - # steps: - # - name: Checkout repository - # uses: actions/checkout@v3 - # - # - name: Setup - # uses: ./.github/actions/setup - # - # - name: Test - # run: cargo test --workspace --all-features + test: + name: Test (${{ matrix.platform }}) + runs-on: ${{ matrix.platform }} + strategy: + matrix: + platform: [ubuntu-20.04, macos-latest, windows-latest] + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Setup + uses: ./.github/actions/setup + + - name: Test + run: cargo test --workspace --all-features + +