diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 32 |
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 |
