Skip to content

chore(deps): bump curve25519-dalek from 4.1.2 to 4.1.3 #19

chore(deps): bump curve25519-dalek from 4.1.2 to 4.1.3

chore(deps): bump curve25519-dalek from 4.1.2 to 4.1.3 #19

name: Check config file creation if not exists
on:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
TestConfig:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- 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;