Skip to content

Commit

Permalink
Added simple test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
lordofwizard committed Oct 16, 2024
1 parent 6142472 commit 4045de3
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/default-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Run Cargo Tests

on:
push:
branches:
- 'feature-*'
pull_request:
branches:
- 'feature-*'

jobs:
default-unit-tests:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable

- name: Install dependencies
run: |
sudo apt-get update
# sudo apt-get install -y libsqlite3-dev # Add any necessary system dependencies here
- name: Run Cargo Test
run: cargo test

0 comments on commit 4045de3

Please sign in to comment.