Skip to content

Commit

Permalink
Revert "build matrix"
Browse files Browse the repository at this point in the history
This reverts commit 4f4f77b.
  • Loading branch information
mitoma committed Jun 4, 2022
1 parent 4f4f77b commit 5d9182d
Showing 1 changed file with 4 additions and 18 deletions.
22 changes: 4 additions & 18 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 5d9182d

Please sign in to comment.