Skip to content

Add performance numbers #8

Add performance numbers

Add performance numbers #8

Workflow file for this run

name: Build
on:
push:
branches:
- develop
- master
tags:
- 'releases/*'
pull_request:
branches:
- develop
- master
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.platform.runner }}
strategy:
matrix:
platform:
- runner: ubuntu-latest
target: x86_64-unknown-linux-gnu
- runner: windows-latest
target: x86_64-pc-windows-msvc
- runner: macos-latest
target: aarch64-apple-darwin
build_profile: ["release"]
steps:
- uses: actions/checkout@v4
- name: Build
run: |
rustup --version
cargo --version
cargo build --profile ${{ matrix.build_profile }} --target ${{ matrix.platform.target }}
- name: Test
run: cargo test --frozen --profile ${{ matrix.build_profile }} --target ${{ matrix.platform.target }}