Skip to content

Commit

Permalink
merge master
Browse files Browse the repository at this point in the history
  • Loading branch information
osipov-mit committed Dec 11, 2023
2 parents 74153ab + f35cf97 commit 7a1743d
Show file tree
Hide file tree
Showing 45 changed files with 4,654 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
directory: "."
schedule:
interval: "weekly"
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Continuous Integration

on:
push:
branches: [ master ]
pull_request:

env:
CARGO_TERM_COLOR: always

jobs:
check:
name: Check
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v4

- name: Check Code Formatting
run: cargo fmt --all --check

- name: Check Code With Clippy
run: cargo clippy --workspace --all-targets -- -D warnings

- name: Run Tests
run: cargo test --workspace --all-targets --no-fail-fast
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@ node_modules/
.DS_Store

.vscode
*.log
target/
.binpath
#.vscode
#.log
Loading

0 comments on commit 7a1743d

Please sign in to comment.