From 5d9182d5a92b272b24b9c7bd9c7f8118a54655ce Mon Sep 17 00:00:00 2001 From: mitoma Date: Sat, 4 Jun 2022 09:24:11 +0900 Subject: [PATCH] Revert "build matrix" This reverts commit 4f4f77be2a9392f8707392433492eb46069d9a85. --- .github/workflows/ci.yaml | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5f29b3a..358aaa4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -6,27 +6,13 @@ env: jobs: build: - strategy: - matrix: - target: - - x86_64-unknown-linux-gnu - - x86_64-pc-windows-gnu - - x86_64-apple-darwin - include: - - target: x86_64-unknown-linux-gnu - os: ubuntu-latest - - target: x86_64-pc-windows-gnu - os: ubuntu-latest - - target: x86_64-apple-darwin - os: macos-latest - - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Build + run: cargo build --verbose - name: Lint run: cargo clippy --verbose - name: Run tests - run: cargo test --verbose - - name: Build - run: cargo build --target=${{ matrix.target }} --verbose + run: cargo test --verbose \ No newline at end of file