From 810106f870244550aba7987b81b06b81cca8b77a Mon Sep 17 00:00:00 2001 From: MarcoIeni <11428655+MarcoIeni@users.noreply.github.com> Date: Wed, 17 Jul 2024 14:34:10 +0200 Subject: [PATCH] chore: remove deprecated action --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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]