Skip to content

Commit

Permalink
Merge pull request #224 from UtkarshBhatthere/CI/addUnitTests
Browse files Browse the repository at this point in the history
Adds unit-test to microceph CI
  • Loading branch information
sabaini authored Sep 26, 2023
2 parents 3cd9bb9 + c8db81b commit b975e5b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,26 @@ jobs:
path: "*.snap"
retention-days: 5

unit-tests:
name: Run Unit tests
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install dependencies
run: |
sudo add-apt-repository ppa:dqlite/dev
sudo apt-get update
sudo apt-get install -y libdqlite-dev golang-go
- name: Run unit-tests
run: |
cd microceph
make check-unit
single-system-tests:
name: Single node with encryption
runs-on: ubuntu-22.04
Expand Down

0 comments on commit b975e5b

Please sign in to comment.