Skip to content

add minimal repro

add minimal repro #2

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
vendor:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Run cargo vendor
run: cargo vendor > .cargo/config.toml
- name: Check the diff is empty
run: test -z "$(git status --porcelain)"
- name: Display diff if not empty
if: ${{ failure() }}
run: git diff