Skip to content

Bump version for v0.3.6 (unreleased) #514

Bump version for v0.3.6 (unreleased)

Bump version for v0.3.6 (unreleased) #514

Workflow file for this run

name: Check native builds
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -Dwarnings
jobs:
check:
strategy:
matrix:
target: [
"aarch64-apple-darwin",
"aarch64-pc-windows-msvc",
"aarch64-unknown-linux-gnu",
]
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-check
- name: Install target
run: rustup target add ${{ matrix.target }}
- name: Check
run: cargo check --target=${{ matrix.target }} --all-targets --verbose
- name: Clippy
run: cargo clippy --target=${{ matrix.target }} --all-targets --verbose
- name: Check format
run: cargo fmt -- --check || exit 1