Skip to content

Bump anyhow from 1.0.91 to 1.0.95 #231

Bump anyhow from 1.0.91 to 1.0.95

Bump anyhow from 1.0.91 to 1.0.95 #231

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
release:
name: CI - ${{ matrix.platform.os-name }}
strategy:
matrix:
platform:
- os-name: Linux-x86_64
runs-on: ubuntu-20.04
target: x86_64-unknown-linux-musl
- os-name: Windows-x86_64
runs-on: windows-latest
target: x86_64-pc-windows-msvc
- os-name: macOS-x86_64
runs-on: macOS-latest
target: x86_64-apple-darwin
runs-on: ${{ matrix.platform.runs-on }}
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
- name: Build binary
uses: houseabsolute/actions-rust-cross@v0.0.15
with:
command: "build"
target: ${{ matrix.platform.target }}
args: "--locked --release"
strip: true