Skip to content

strong ref accessors, weak count accessor #45

strong ref accessors, weak count accessor

strong ref accessors, weak count accessor #45

Workflow file for this run

name: ci
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Build doc
run: cargo doc --verbose
- name: Run clippy
run: cargo clippy --verbose
- name: Run rustfmt
run: cargo fmt --verbose --check
- name: Build release
run: cargo build --release --verbose