Skip to content

Commit

Permalink
Cross test on FreeBSD in github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
niluxv committed Oct 13, 2024
1 parent a616400 commit 7631ef4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,28 @@ jobs:
command: test
args: --all-features

cross_test:
name: Cross Test
runs-on: ubuntu-latest
strategy:
matrix:
rust-target: [x86_64-unknown-freebsd]
steps:
- name: Checkout sources
uses: actions/checkout@v4

- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.rust-target }}

- name: Run cross test
uses: clechasseur/rs-cargo@v2
with:
use-cross: true
command: test
args: --target ${{ matrix.rust-target }}

doc:
name: Documentation
runs-on: ubuntu-latest
Expand Down

0 comments on commit 7631ef4

Please sign in to comment.