Add hv headers directly in the repo #130
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MSHV Build test | |
on: [pull_request, create] | |
jobs: | |
build: | |
name: Build test for MSHV crate | |
strategy: | |
matrix: | |
platform: | |
- target: x86_64-unknown-linux-gnu | |
command: build | |
- target: aarch64-unknown-linux-musl | |
command: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build binary | |
uses: houseabsolute/actions-rust-cross@v0 | |
with: | |
command: ${{ matrix.platform.command }} | |
target: ${{ matrix.platform.target }} | |
args: "--release" |