ci: remove code coverage test & uniform file names (#811)

This commit is contained in:
SteveLauC
2024-05-24 09:02:05 +08:00
committed by GitHub
parent c4c0bd7383
commit 9eb1b4ac9f
12 changed files with 2 additions and 59 deletions

View File

@@ -0,0 +1,21 @@
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;