Thanks to visit codestin.com
Credit goes to github.com

Skip to content

chore(release): prepare for v0.40.0 #1263

chore(release): prepare for v0.40.0

chore(release): prepare for v0.40.0 #1263

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Cache
uses: actions/[email protected]
with:
path: |
~/.cargo/bin
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-${{ runner.arch }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Setup
run: |
cargo install cargo-deny || true
cargo install git-cliff || true
- run: make test
test:
strategy:
matrix:
os:
- windows-2022
- macos-latest
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Cache
uses: actions/[email protected]
with:
path: |
~/.cargo/bin
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-${{ runner.arch }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- run: cargo test