Skip to content

Merge pull request #10 from D4isDAVID/crossplatform #28

Merge pull request #10 from D4isDAVID/crossplatform

Merge pull request #10 from D4isDAVID/crossplatform #28

Workflow file for this run

name: Rust
on:
push:
branches: [ "duck" ]
pull_request:
branches: [ "duck" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
include:
- os: ubuntu-latest
target: aarch64-unknown-linux-gnu
- os: windows-latest
target: i686-pc-windows-gnu
- os: windows-latest
target: i686-pc-windows-msvc
- os: ubuntu-latest
target: i686-unknown-linux-gnu
- os: macos-latest
target: x86_64-apple-darwin
- os: windows-latest
target: x86_64-pc-windows-gnu
- os: windows-latest
target: x86_64-pc-windows-msvc
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose