Skip to content

Commit

Permalink
ci: add freebsd target
Browse files Browse the repository at this point in the history
  • Loading branch information
saidsay-so committed Sep 25, 2024
1 parent f626f4f commit 20e5f5e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,17 @@ jobs:
working-directory: rust
run: cargo fmt --all --check

- name: Check clippy
- name: Check clippy for Linux
working-directory: rust
run: cargo clippy --all-targets --all-features

- name: Install FreeBSD target
run: rustup target add x86_64-unknown-freebsd

- name: Check clippy for FreeBSD
working-directory: rust
run: cargo clippy --all-targets --all-features --target x86_64-unknown-freebsd

- name: Check doc
working-directory: rust
run: cargo doc --no-deps --all-features

0 comments on commit 20e5f5e

Please sign in to comment.