fix CI: Install dependencies (#33)

install boost, remove all targets except ubuntu
This commit is contained in:
Boog900 2023-10-29 01:11:55 +00:00 committed by GitHub
parent 7f5035ece2
commit e1eaaf80d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,7 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [windows-2019, macos-11, ubuntu-20.04] os: [ubuntu-latest]
steps: steps:
- name: Checkout - name: Checkout
@ -35,6 +35,9 @@ jobs:
path: target path: target
key: ${{ matrix.os }} key: ${{ matrix.os }}
- name: Install dependencies
run: sudo apt install -y libboost-dev
- name: Clippy - name: Clippy
run: cargo clippy run: cargo clippy