Skip to content

test build

test build #1

Workflow file for this run

name: Rust Build
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest] # Add other OSes if needed
targets: ['x86_64-unknown-linux-musl', 'x86_64-unknown-linux-gnu']
steps:
- uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- name: Build
run: |
rustup target add ${{ matrix.targets }}
cargo build --release --target=${{ matrix.targets }}