Skip to content

build(deps): update derive_more requirement from 0.99 to 1.0 #505

build(deps): update derive_more requirement from 0.99 to 1.0

build(deps): update derive_more requirement from 0.99 to 1.0 #505

Workflow file for this run

name: CI - macOS - aarch64
on:
push:
branches:
- master
- feature-*
- issue-*
pull_request:
jobs:
build_and_test:
strategy:
fail-fast: false
matrix:
version:
- 1.65.0 # MSRV
- stable
- nightly
name: Test ${{ matrix.version }} - aarch64-apple-darwin
runs-on: macOS-latest
steps:
- name: Install Dependencies
run: |
brew install pkgconfig
brew install libarchive
echo PKG_CONFIG_PATH=$(brew ls libarchive | grep .pc$ | sed 's|/libarchive.pc||') >> $GITHUB_ENV
- name: Checkout sources
uses: actions/checkout@v4
- name: Install ${{ matrix.version }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.version }}-aarch64-apple-darwin
profile: minimal
override: true
- name: Generate Cargo.lock
uses: actions-rs/cargo@v1
with:
command: generate-lockfile
- name: Cache cargo registry
uses: actions/cache@v4
with:
path: ~/.cargo/registry
key: ${{ matrix.version }}-aarch64-apple-darwin-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v4
with:
path: ~/.cargo/git
key: ${{ matrix.version }}-aarch64-apple-darwin-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v4
with:
path: target
key: ${{ matrix.version }}-aarch64-apple-darwin-cargo-build-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Check build
uses: actions-rs/cargo@v1
with:
command: check
args: --release --all --bins --examples --tests
- name: Tests
uses: actions-rs/cargo@v1
timeout-minutes: 10
with:
command: test
args: --release --all --all-features --no-fail-fast -- --nocapture