Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,22 @@ jobs:
cargo clean
cargo build --workspace --features protoc-vendored
git diff --exit-code

freebsd-test:
runs-on: ubuntu-latest
name: FreeBSD CI
steps:
- uses: actions/checkout@v6
- name: Test in FreeBSD
id: test
uses: vmactions/freebsd-vm@v1
with:
prepare: |
pkg install -y rust freetype2
run: |
# Run tests with freetype
cargo test --workspace --features freetype --locked
# Run tests in release mode
cargo test --workspace --release --features freetype --locked


Loading