diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75b0f14..8280c83 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,9 +4,12 @@ jobs: build: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - run: rustup default ${{ matrix.channel }} - - uses: rust-lang/simpleinfra/github-actions/simple-ci@master + - name: Build + run: cargo build --tests --workspace + - name: Test + run: cargo test --workspace strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest]