From e1eaaf80d9b22f60a20346ea103f6fc88466afe0 Mon Sep 17 00:00:00 2001 From: Boog900 <108027008+Boog900@users.noreply.github.com> Date: Sun, 29 Oct 2023 01:11:55 +0000 Subject: [PATCH] fix CI: Install dependencies (#33) install boost, remove all targets except ubuntu --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ec4eeb4..687c556a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: strategy: matrix: - os: [windows-2019, macos-11, ubuntu-20.04] + os: [ubuntu-latest] steps: - name: Checkout @@ -35,6 +35,9 @@ jobs: path: target key: ${{ matrix.os }} + - name: Install dependencies + run: sudo apt install -y libboost-dev + - name: Clippy run: cargo clippy