Skip to content

feat: --retry [<COUNT>] flag and --no-retry deprecation #1456

feat: --retry [<COUNT>] flag and --no-retry deprecation

feat: --retry [<COUNT>] flag and --no-retry deprecation #1456

name: Check config file creation if not exists
on:
pull_request:
env:
CARGO_TERM_COLOR: always
permissions:
contents: read
jobs:
TestConfig:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- run: |
CONFIG_PATH=~/.config/topgrade.toml;
if [ -f "$CONFIG_PATH" ]; then rm $CONFIG_PATH; fi
cargo build;
TOPGRADE_SKIP_BRKC_NOTIFY=true ./target/debug/topgrade --dry-run --only system;
stat $CONFIG_PATH;