Skip to content

Commit

Permalink
Migrated repo with mvp functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
pradovic committed Feb 8, 2024
1 parent a075ba1 commit a67cda6
Show file tree
Hide file tree
Showing 17 changed files with 4,357 additions and 523 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Rust

on: [push, pull_request]

jobs:
build_and_test:
name: Build and Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: [stable]
fail-fast: true
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
profile: minimal
override: true

- name: Cache Cargo dependencies
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Run Clippy
if: matrix.rust == 'stable' && matrix.os == 'ubuntu-latest'
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Build
run: cargo build --verbose

- name: Run tests
run: cargo test --verbose
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/target
.env
/.idea
/.zed
*.redb
3 changes: 3 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# This is the official list of Direct Decisions Discord bot authors for copyright purposes.

Petar Radovic <petar.radovic@gmail.com>
Loading

0 comments on commit a67cda6

Please sign in to comment.