Skip to content

Auto merge of #610 - micolous:cfrunloop-send, r=jrmuizel #536

Auto merge of #610 - micolous:cfrunloop-send, r=jrmuizel

Auto merge of #610 - micolous:cfrunloop-send, r=jrmuizel #536

Workflow file for this run

name: Rust
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
env:
CARGO_TERM_COLOR: always
jobs:
semver:
runs-on: macos-11.0
steps:
- uses: actions/checkout@v2
- name: Check semver
uses: obi1kenobi/cargo-semver-checks-action@v2
msrv:
runs-on: macos-11.0
steps:
- uses: actions/checkout@v2
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.56.1
override: true
- name: Build
run: cargo build --verbose
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-11.0, macos-12, macos-13]
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
build_result:
name: homu build finished
runs-on: ubuntu-latest
needs:
- "build"
steps:
- name: Mark the job as successful
run: exit 0
if: success()
- name: Mark the job as unsuccessful
run: exit 1
if: "!success()"