Skip to content

chore: bump version 0.19.1 → 0.19.2 [skip-ci] #402

chore: bump version 0.19.1 → 0.19.2 [skip-ci]

chore: bump version 0.19.1 → 0.19.2 [skip-ci] #402

Workflow file for this run

on:
pull_request: {}
push:
branches:
- master
name: build
jobs:
build_unix:
name: Build for unix
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo build --release
build_macos_arm:
name: Build for macos (arm)
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: aarch64-apple-darwin
default: true
override: true
- run: cargo build --release
build_macos:
name: Build for macos
runs-on: macos-13
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: x86_64-apple-darwin
default: true
override: true
- run: cargo build --release
build_windows:
name: Build for windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: x86_64-pc-windows-msvc
default: true
override: true
- run: cargo build --release