Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version: 2
updates:
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "monthly"
day: "sunday"
commit-message:
prefix: "chore(dep): "
groups:
deps:
patterns:
- "*"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
day: "sunday"
commit-message:
prefix: "chore(dep): "
groups:
deps:
patterns:
- "*"
9 changes: 4 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: leetcode-cli

on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]

jobs:
build:
Expand All @@ -22,13 +22,12 @@ jobs:
- name: Environment
run: |
if [[ "$(uname)" == 'Darwin' ]]; then
brew update
brew install sqlite3
else
sudo apt-get update -y
sudo apt-get install -y libsqlite3-dev libdbus-1-dev
fi
- name: Build
run: cargo build --release --locked
run: cargo build --release --all-features
- name: Run tests
run: cargo test
run: cargo test --release --all-features
Loading