aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mssola@mssola.com>2026-07-21 22:43:54 +0200
committerMiquel Sabaté Solà <mssola@mssola.com>2026-07-21 22:43:54 +0200
commit57cee32300b20491840a8ce1b53fcf36d84db775 (patch)
treef531163120b8689cf4e91e4369c99ee9e1f6b313 /.github/workflows
parent4939d22af2b6e43b280624cc5c2bbb9656dc5b55 (diff)
downloadmihi-57cee32300b20491840a8ce1b53fcf36d84db775.tar.gz
mihi-57cee32300b20491840a8ce1b53fcf36d84db775.zip
Remove .github directoryHEADmain
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml32
1 files changed, 0 insertions, 32 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
deleted file mode 100644
index 3e4d8b4..0000000
--- a/.github/workflows/ci.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-name: CI
-
-on:
- push:
- branches: [main]
- pull_request:
- branches: [main]
-
-env:
- RUSTFLAGS: "-Dwarnings"
-
-jobs:
- test:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
-
- - name: Ensure latest Rust stable
- run: |
- rustup update stable
- rustup default stable
-
- - name: Run tests
- env:
- MIHI_DATABASE: test.sqlite3
- run: |
- mkdir -p $HOME/.config/mihi
- cp testdata/test.sqlite3 $HOME/.config/mihi/
- cargo test --verbose
-
- - name: Run Clippy
- run: cargo clippy --all-targets --all-features